If you are looking to get the total number of records that are created / updated today in the mysql database, then the following Eloquent query will come handy. Considering we have a model named Post …
Category: Laravel
Laravel’s Storage facade makes it easier to get list of files within a directory. However if you are looking to get a list of files within the public directory, or any other directory within the public …
Often in your laravel application you are loading and fetching the results on the database which doesn’t necessarily needs to be fetched on every page reload. Query that takes longer amount to execute slows down the …
There are two ways to include Select2 plugin in your laravel project, one is via including the CDN and another is via NPM i.e. node package manager. I find handling the dependencies via NPM to be …
At times in your laravel validation, you may want input field to be validated only if the user filled in the field and you may want to skip the validation if there is field is left …
Using Carbon library it is very simple to get yesterday’s and tomorrow’s timestamp in your PHP or Laravel code. You just need to import the Carbon library and call below functions Carbon::tomorrow(); //Returns tomorrow date and …
When using laravel filesystem to upload files it automatically assigns a filename to the file. If you want to use the original filename or specify any other file name, you can do so by using storeAs …
This is a simple step-by-step guide on how to host your Laravel project to Digital Ocean with the help of Cloudways. For this demonstration I have created a dummy Laravel project with the latest version and …
Let’s just quickly go over on how easy it is to update / delete the related models in your Laravel Models using Model Events. Eloquent model dispatch several events based on the action performed on the …
It’s always a good idea to put a password confirmation field in your forms, since password is a masked field and the user would never know if they made a typing mistake while filling out the …