Hamza Ikram✨ (@h_ik04) 's Twitter Profile
Hamza Ikram✨

@h_ik04

🚀 Laravel Developer
💻 Building SPA with Laravel and Vue. Follow their journey 👉(shorturl.at/uHPQZ)
💡 Join for Laravel & Web Dev tips and insights

ID: 219714031

calendar_today25-11-2010 17:20:19

4,4K Tweet

733 Takipçi

888 Takip Edilen

Hamza Ikram✨ (@h_ik04) 's Twitter Profile Photo

Laravel hot tip 🔥 You can apply casts on the fly directly to your query with query time casting #Laravel #buildinginpublic

Laravel hot tip 🔥
You can apply casts on the fly directly to your query with query time casting
#Laravel #buildinginpublic
Joe Tannenbaum (@joetannenbaum) 's Twitter Profile Photo

The March Laravel Open Source changelog is out! This is what you call in the industry a "beefy month" - Laravel 13 - Inertia v3 - Teams in Starter Kits - New 𝚕𝚊𝚛𝚊𝚟𝚎𝚕-𝚋𝚎𝚜𝚝-𝚙𝚛𝚊𝚌𝚝𝚒𝚌𝚎𝚜 skill for Boost - Slew of new Prompts components - Reverb per application

Laracon US (@laraconus) 's Twitter Profile Photo

Matt Stauffer is taking the Laracon stage. CEO of Tighten, Matt leads a team that specializes in building and saving web apps and dev teams. Join us July 28-29 in Boston. laracon.us

<a href="/mattstauffer/">Matt Stauffer</a> is taking the Laracon stage.

CEO of Tighten, Matt leads a team that specializes in building and saving web apps and dev teams.

Join us July 28-29 in Boston.

laracon.us
Povilas Korop | Laravel Courses Creator & Youtuber (@povilaskorop) 's Twitter Profile Photo

Laravel tip. Sometimes foreign keys deserve more clear relation names than defaults. Field `invited_by` becoming `$teamInvitation->user()` is vague. Use `->inviter()` for clarity, even if the relationship is to User model.

Laravel tip.

Sometimes foreign keys deserve more clear relation names than defaults.

Field `invited_by` becoming `$teamInvitation-&gt;user()` is vague.

Use `-&gt;inviter()` for clarity, even if the relationship is to User model.
Ash Allen 🚀 (@ashallendesign) 's Twitter Profile Photo

⚡ As of Laravel 13.4.0, you can use "FormRequest::failOnUnknownFields" to enable errors which will be thrown if unknown fields are passed in requests! Is this something you think you'd use in your own projects? 😄

⚡ As of Laravel 13.4.0, you can use "FormRequest::failOnUnknownFields" to enable errors which will be thrown if unknown fields are passed in requests!

Is this something you think you'd use in your own projects? 😄
Povilas Korop | Laravel Courses Creator & Youtuber (@povilaskorop) 's Twitter Profile Photo

Life Protip: Many problems can be solved by just PROGRESS. If you are not sure how to start doing something, just start. Or at least think about potential solutions instead of dwelling on the problem. When you start with some action, it may be the wrong direction, but it

Mohammad Emran ⚡️ (@phpfour) 's Twitter Profile Photo

Hey Laravel Devs 👋 I've been writing a book with Ahmed shamim hassan for a couple of months: "Inside Laravel: the patterns that power the framework." Just launched the website (thanks to Adam Wathan for releasing ui .sh just in time)! Download the free chapter, link in comments ↓

Hey Laravel Devs 👋

I've been writing a book with <a href="/me_shaon/">Ahmed shamim hassan</a> for a couple of months:

"Inside Laravel: the patterns that power the framework."

Just launched the website (thanks to <a href="/adamwathan/">Adam Wathan</a> for releasing ui .sh just in time)!

Download the free chapter, link in comments ↓
Hamza Ikram✨ (@h_ik04) 's Twitter Profile Photo

You can find a lot of quality, quick Laravel tricks on Twitter 🐦. I’ve collected some of them on different topics and organized them in a collection on Raindrop 📚. You can check it out here: lnkd.in/dM4W6xTW

Hamza Ikram✨ (@h_ik04) 's Twitter Profile Photo

Twitter is a great place to learn and upskill in tech. Many experienced developers share high-quality, real-world insights there. I’ve created a curated Twitter list focused on Laravel to help you stay updated and improve your skills.👇 x.com/i/lists/147977…

Hamza Ikram✨ (@h_ik04) 's Twitter Profile Photo

Many backend developers underestimate data modeling ⚠️ Before starting a project or adding a feature, take time to visualize your data model 🧩. It helps you understand how different parts of the system connect, make better decisions, and save time during implementation

Many backend developers underestimate data modeling ⚠️

Before starting a project or adding a feature, take time to visualize your data model 🧩. It helps you understand how different parts of the system connect, make better decisions, and save time during implementation
Hamza Ikram✨ (@h_ik04) 's Twitter Profile Photo

I’m excited to join Frontend Nation! 💥 Join me and thousands of frontend devs in learning through workshops, talks, and community. It’s online and completely FREE! 🙌 Stay in the loop frontendnation.com/badge/h04cgBle… #frontendnation #FEN2026

Hamza Ikram✨ (@h_ik04) 's Twitter Profile Photo

In PHP, == triggers type juggling, meaning different values can evaluate as true. In authentication or token checks, that’s a subtle but real risk 🔐 What to use instead === → for strict, predictable comparisons hash_equals() → for sensitive data (tokens, signatures, hashes)

In PHP, == triggers type juggling, meaning different values can evaluate as true.
In authentication or token checks, that’s a subtle but real risk 🔐

 What to use instead
=== → for strict, predictable comparisons 
hash_equals() → for sensitive data (tokens, signatures, hashes)