#laravel
Read more stories on Hashnode
Articles with this tag
By default, the login feature uses checking based on email instead of a username. Then what if we want to check based on username? Here's how. On the...
Laravel UI composer require laravel/ui //Then select the boardplate you like php artisan ui bootstrap --auth php artisan ui vue --auth php artisan ui...
Imagine you have an order system for goods. Where the ordering system has a manual approval system. Then you are assigned by your manager to create a...
Sometimes I have difficulty sorting data, for example, I want to sort data based on existing relationships with orderBy() and it doesn't work. My...
Case: In the warehouse application, display how long an item or items have been in the warehouse. model Stock.php <?php namespace App\Models; use...
What is a collection in Laravel? The collection is a feature in the Laravel core that aims to make it easier for us to manage arrays. Now consider...