8 Things You Can Customize in Laravel Registration
Laravel has a great Auth system out-of-the-box, with just a few commands you can have Login/Register functions ready. But let's dive a little deeper and see what we can easily customize.
In-depth Laravel tutorials covering advanced topics, real-world examples, and best practices.
Laravel has a great Auth system out-of-the-box, with just a few commands you can have Login/Register functions ready. But let's dive a little deeper and see what we can easily customize.
Laravel Validation mechanism has a lot of various rules. Let's pick the ones that can be applied to graphical files.
Spatie team is still on fire with new packages. This week they released another one called Laravel Searchable, created mainly by AlexVanderbist. I've tried it myself and can show you a demo, along with my opinion.
Typical Eloquent one-to-many relationship is defined with belongsTo() and hasMany() methods in the model. But did you know you can chain more methods to filter specific records for that relationship? Let me show you what I mean.
This is a free 15-minute live-coding video from my course "Excel Export/Import in Laravel". In this video, I'm seeding some data, exporting it to Excel, edit some data there and importing it back, all with Laravel Excel package.
There is a well-known Laravel validation rule required. But did you know there a few similar rules called present and filled? In this short video, I'm showing the differences and use-cases.
This is a free video from my online course "Excel: Export/Import in Laravel". In this video, I'm trying to import a file via Laravel Excel package, and showing how to handle errors and catch PHP Exceptions.
This is a free video from my course "Excel: Export/Import in Laravel". In this video, I'm showing a less-known feature of Laravel Excel package - exporting from HTML/Blade table.
In this short video, I will show two strategies to highlight current menu item or section as active, using $request parameters.
File uploads are one of the essential things in web apps these days. But secure download of these files is sometimes even more important. So how to store files securely so people wouldn't have access to them or guess their URLs or IDs of their records? Here's a small demo tutorial.