Laravel Validation Rules: PRESENT and FILLED
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.
In-depth Laravel tutorials covering advanced topics, real-world examples, and best practices.
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.
In this short video, I will install AdminLTE Bootstrap theme in live-coding mode.
Quick tip for those who want to list some events, grouping them by some date value - by day, month, year etc.
I've recently launched a new online-course Eloquent: Expert Level. With this article, I want to make you an offer which may convince you to join the course.
A common problem while working in a team is some custom variables needed, when only one person on the team knows that they are needed, and then other people have errors because they don't have that variable. Like API Tokens for 3rd party apps, default values for some function - basically, anything that should be in .env file. So here's an instruction for you, how to put new environment variables correctly, without screwing up teammates work.
There are a lot of courses and articles about coding but much less about **putting it in production**. With a lot of questions asked, I decided to write this ultimate (hopefully) guide to deploy Laravel projects.