Latest Laravel/PHP Articles

Latest Laravel/PHP Articles curated daily from around the web.


Laravel Queue Debouncer package allows any queue job or chain in your Laravel application to be debounced, meaning that no matter how many times it’s dispatched...
https://ohdear.app is the all-in-one monitoring tool for your entire website. We monitor uptime, SSL certificates, broken links, scheduled tasks and more.
Since various elements of the Inspector backend rely on Laravel, I worked a lot with the ORM component myself, and its Eager Loading features. Laravel Eloquent...
Digital Ocean Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
Password generation is something we all think about doing at some point, but how can we go about doing it - and making these passwords easy to remember and secu...

juststeveking.uk

Fun with Refactoring
Refactoring isn’t a dirty word, quite the opposite. Refactoring is something that you do when you have leveled up or generally improved. We will use a...
The following article is an excerpt from my ebook Battle Ready Laravel, which is a guide to auditing, testing, fixing, and improving your Laravel applications....
In this article, we will see how to file upload in laravel 9 example. Here we will show you the laravel 9 file upload in the pubic folder example.
Digital Ocean Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
Laravel Localizer is an awesome package that allows you to automatically detect and set an app locale that matches your visitor's preference. Define your suppor...
In this article, we will see REST API with passport authentication in laravel 9. Also, we will perform CRUD operations with laravel 9 REST API. REST API is an a...
Laravel Hours Helper is an amazing package that helps you to create an Illuminate\Support\Collection of dates and times with a specific interval for a specific...
Laravel Load File is a package to help with loading files into MySQL tables. This uses MySQL's LOAD DATA statement to load text files quickly into your database...
Digital Ocean Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
https://dev.to/creativetim_official We all know that it is supposed to be the best time of the year to make purchases, and we should all take advantage of it.
There are 2 ways to delete records from tables. Physical deletion is to literally delete records from your database and there is no way to restore it. ...
Route::get('test/{id}', function(){ return 'test page '; }); // id=xxxxxxxxxx // http://127.0.0.1:8000/test/xxxxxxxxxx // output => test page Exit fullscreen mo...
https://dev.to/maykl_hakobyan Laravel allows the creation of form request classes for handling data validation logic. Using the make:request command of the Arti...