Laravel Auth: Changed Login Checking from Email to UsernameBy 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 file Controller\Auth\LoginController.php add the following methods: public function username() { ...Dec 8, 2022·1 min read·13
Laravel Case Study: Make an Accessor Calculate The Age of an Item with Month and Day in LaravelOct 20, 2022·2 min read·60
Today's Lesson: Using Collections in LaravelWhat 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 using collections if you've been using native PHP features to manage arrays because the collection has ...Aug 7, 2022·1 min read·49
Today's Laravel Lesson: Manage Subdomain in LaravelToday I learned to create a subdomain in Laravel. I'm learning subdomains because I'm planning to create a multitenant-based saas project. Immediately, the first step I took was to define the hostname and subdomain I wanted. In order to run in the Wi...Jul 26, 2022·1 min read·70
Laravel Lesson Today: Notion API - Authorizing Public IntegrationsToday I learned how to start a Notion API project with Laravel. I learned the Notion API because I wanted to create a side project with the Notion tool. This blog won't be long, because in exploring the Notion API with Laravel I followed an article b...Jul 24, 2022·2 min read·64
Laravel Lesson of the Week # How to avoid Over-EngineeringI am a beginner laravel programmer. One of the things I'm grateful for is that I met a great community on Twitter. The developers are so kind to give advice, it's great for beginners. I recommend beginners to start joining the twitter community. A fe...Jul 23, 2022·6 min read·71
Learn Inertia Part 4: Display Data With TableIn this series, we will try to display data in laravel and inertiajs. The case study we use is a product, our first task is to create a model file, a product controller. Run the following command: php artisan make:model Product -mfrc The above comm...Apr 9, 2022·6 min read·37