RJcodebyrj.dev·Mar 25, 2024Demystifying Laravel Code: Adding Search Filters with Builder::macroIf you’re new to Laravel and find this code a bit daunting, don’t worry! We’ll break it down into simple parts to help you understand what’s going on. This code snippet is used in Laravel, a popular PHP web application framework, to add search filter...103 readsLaravel
Tony Joetonyjoe.dev·Sep 24, 2023How to handle a Private Beta with access code for your new app in LaravelDo you have an app that needs testing before the big launch? Before opening a public beta, it is best to keep the doors ajar and start with a private beta. In this tutorial, we will see how to make our Laravel application capable of requesting an acc...664 readsLaravel
Tony Joetonyjoe.dev·Aug 27, 2023How to simply expose an endpoint with API Key in LaravelWe all need, sooner or later, to expose an endpoint quickly and with the greatest possible security. Laravel provides advanced methods to manage authentication, whether username/password or API token. But here we are talking about an agile method tha...3 likes·8.2K readsLaravel
Tony Joetonyjoe.dev·Aug 27, 2023How to manage subscribed webhooks in LaravelWeb applications are increasingly interconnected: data is continuously exchanged and notifications are sent when certain events occur. Until a few years ago, developing solid connections between different systems was no mean feat and required conside...1.0K readsLaravel
Kaushik Thakkardevkaushik.hashnode.dev·Feb 17, 2023Livewire : CRUD Tutorial in LaravelLaravel Livewire is a library that allows you to build dynamic, reactive user interfaces in Laravel using a simple, component-based approach. In this tutorial, we'll create a basic CRUD (Create, Read, Update, Delete) application using Laravel Livewir...1.7K readsLivewireLivewire