Never use model calls inside of migrations in Laravel
Avoid this trivial exception in your Laravel migrations.
Hit 1-5 to navigate
posts
Make youreself at home. Read my thoughts. Formulate your own. And ideally, let me hear yours too, I'm available on email at stash.yazan@gmail.com
Avoid this trivial exception in your Laravel migrations.
make your own "php artisan make:" command in a super clean way.
Logs can eat disk space on a busy system like Chrome eats memory, let's see how to prevent that.
A quick tutorial to show you how to implement multi-guard authentication in Laravel, separating database tables, models, views ...
Ever wondered how Laravel hot swapes drivers for services, like the database and queue? let me show you how you could implement the same.
See how to create an idempotent seeder to generate permissions for your resources.
Let's see how to access the MySQL server inside of Homestead using the same port for host and guest machines.
A Tag can have many parents, and also can have many children, how do we model this in Laravel Nova?
See how to change the database connection details mid-request.
As you may already know, Laravel (since 5.3) ships with a great out-the-box notifications support, it also has native support for many "channels", extra channels like Telegram can be obtained from http://laravel-notification-channels.com, it's worth a look. But in this post, we're most concerned with the database driver...