Latest Laravel/PHP Articles

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


Powered Enum is a fantastic package that offers a trait that contains some cool features for native PHP enums. This package requires PHP or higher. All...
This article was originally written by https://www.honeybadger.io/blog/laravel-tdd/#authorDetails on the https://www.honeybadger.io/blog/laravel-tdd/. In this t...
Use RESTful controllers to turn your routes into more structured and clean one-line code. I saw it as a simpler and cleaner way than using 6 to 8 routes like: r...
CodeMentor Codementor is an online marketplace connecting developers with experts for on- demand 1:1 help via screen sharing, video, and text chat.
https://dev.to/sr2ds Hello, This is my first full English post! If you, like me, has Laravel inside your world and like beautiful things, I think you n...
They have a really functional, Javascript-y taste: $sum = collect($numbers) ->filter(fn (int $x) => $x > 10) ->map(fn (int $x) => $x * 2) ->sum(); Another remar...
In the latest release of Vapor, we've made it possible for you to serve your assets via a custom domain. Vapor serves assets from CloudFront, the AWS content de...
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.
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.
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.
In this article, we will see laravel 8 get the latest records from the database. In PHP, you can use order by clause with descending order to get the last recor...
https://dev.to/iankumu https://res.cloudinary.com/practicaldev/image/fetch/s--IZ-2V7Gv--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploa...
Cover photo by Tim Wildsmith on Unsplash https://res.cloudinary.com/practicaldev/image/fetch/s--EakxJphR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/ht...
Glimpse streamlines Laravel development by seamlessly deploying GitHub pull requests to preview environments with the help of Laravel Forge. Glimpse streamlines Laravel development by seamlessly deploying GitHub pull requests to preview environments with the help of Laravel Forge.
Passwordless authentication is a method whereby users access an app without entering passwords. It is the most effective way to reduce risky password management...
In this article, we will see how to generate QR code in laravel 8. we will generate QR code using the simplesoftwareio/simple-qrcode package in laravel 8. simpl...
This post is showing some examples that are pretty easy to add to any Laravel project that use Laravel Breeze. Here a login example: Take in mind that the defau...
In this tutorial, we will learn Laravel middleware. We will learn with custom middleware and also Laravel predefined middleware. But what is middleware...