Advertisement · 728 × 90

Posts by Aamir Sohail Laravel developer

Preview
Filament v4 is Stable! - Laravel News It's official! As of today, August 12, 2025, Filament v4 is officially stable! And in large part, that is thanks to our incredible community and all the help with testing, bug fixing, and overall recommendations. Come and celebrate some of our favorite new updates with v4!

Filament v4 is Stable! laravel-news.com/filament-v4-...

8 months ago 13 3 0 1

That's where Filament shines

8 months ago 0 0 1 0

That's good, keep it up

8 months ago 2 0 0 0
Post image

I cracked the code so you don’t have to.

Ever tried changing the admin panel’s header link in Filament?
Spoiler: It’s NOT in the docs.
After digging into the source code, I found this gem:

Just override homeUrl in your PanelProvider
Save yourself hours—bookmark this.
#Laravel #FilamentPHP #DevTips

11 months ago 3 0 0 0

Quick Tip: Speed Up Your Laravel App by Caching Routes.

In production, a quick

php artisan route:cache

can significantly reduce boot time and improve performance.

#Laravel #Optimization

1 year ago 1 0 0 0
Preview
Create beautiful images of your code Turn your code into beautiful images. Choose from a range of syntax colors, hide or show the background, and toggle between a dark and light window.

I use www.ray.so#language=php

1 year ago 1 0 1 0
Post image

My VS Code extension [marketplace.visualstudio.com/items just hit 100K installs 🎉 Super excited!
Huge thanks to everyone who uses it! 🙏
What should I build next? A Livewire extension for:

Livewire Flux UI
Livewire Volt
#vscode #extensions #livewire

1 year ago 9 3 0 0
Post image

When working with #Laravel Eloquent, the order of select() and withCount() matters! 🧵👇

Always chain select() BEFORE withCount() to keep your queries lean!

Understanding this behavior can save you from unexpected results. Always double-check your query structure! 💡 #PHP #Laravel #Eloquent

1 year ago 2 1 1 0

As this is core PHP it's hard to improve it for readability.

1 year ago 0 0 0 0
Advertisement

Being a PHP developer, functionality is good but readability is 🙂

1 year ago 1 0 0 0
Post image

Laravel Tip
Are you using the Attribute casts in your models?
Make sure to declare the return type in your accessors/mutators!

hashtag#Laravel hashtag#PHP

1 year ago 3 1 0 0

💗💗 waiting

1 year ago 2 0 0 0

We are here, you are not alone

1 year ago 0 0 0 0
Don't worry about people's opinion

Don't worry about people's opinion

Don't worry about people's opinion.

1 year ago 2 1 0 0
Post image

Little Tailwind tip — instead of trying merge classes and manage conflicts with `!important`, style things based on data or ARIA attributes and just handle everything declaratively with CSS:

1 year ago 176 12 9 5

I'm using it, and not that much.
I'm doing something for IDE support especially vs code

1 year ago 1 0 0 0
Just use this in Laravel:

DB::enableQueryLog();
// Run your queries
dd(DB::getQueryLog());

Just use this in Laravel: DB::enableQueryLog(); // Run your queries dd(DB::getQueryLog());

Another way to check the time taken by database query in laravel,

It'll show you all the queries being executed. Debugging is made simple! 🚀 #LaravelTips"

1 year ago 4 1 0 0