Latest Laravel/PHP Articles

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


Laravel Jobs allow you to queue up processes to be done at a later date, this is normally reserved for longer running tasks or tasks that need to communicate wi...
When you run your website through Google PageSpeed it will highlight the Google web font script as a render blocking file. Using the WebFontLoader to load the w...
If you use https://github.com/barryvdh/laravel-debugbar when developing your app you'll notice there is a tab that will show you all the database queries your a...
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.
In this tutorial we're going to investigate a webpack feature called code splitting. Code splitting will allow you to reduce the size of your main JavaScript fi...
Laravel allows you to use a few different Session drivers. Redis and Memcache are the fastest options to use for your session driver so you'll find a lot of peo...
In this tutorial we're going to create a new Laravel package for the Auth tests we wrote in a previous tutorial. https://paulund.co.uk/laravel-make-auth-testsWe...
In this tutorial we're going to create a new Laravel listener that will listen to the user logged in event and then update the user record with the time they lo...
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.
In this tutorial we're going to expand on a built in Laravel command I use in almost every project the php artisan make:auth command. The make auth command will...
In this tutorial we're going to build a form component for a checkbox but styled as a toggle. The functionality for this toggle will be just like a checkbox but...
In this tutorial we're going to learn how we can send an email to the application admin user when a new user registers to your Laravel application. In this exam...
It's very common these days to see websites that just use the non-www domain and therefore redirect all requests to www to the domain. Below is a quick code sni...
Fathom Analytics | Fast, simple and privacy-focused website analytics. Fathom Analytics | Fast, simple and privacy-focused website analytics.
In this tutorial we're going to learn how we can add Google reCAPTCHA to your forms in Laravel. For this functionality we're going to use the free Google servic...
In this tutorial we're going to investigate how we can reuse the logic in Laravel Form requests for the difference between Create and Update requests. Laravel f...
In this tutorial we're going to build a test class that will run through all guest URLs defined in our web.php routes and check that they all return a HTTP stat...
In this tutorial we're going to create our own Laravel package that will give you all the functionality you need to add a contact form to your website. The prob...