Latest Laravel/PHP Articles

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


Laravel has built-in functionality for dealing with translations. You can store arrays for language strings inside the resources/lang folders and depending on y...
In Laravel 5.7 a new feature was added to allow you to ask your users for https://laravel.com/docs/5.7/verification before they're allowed to access anything in...
When you're working on a project with a strong test suite you'll want to make sure that everything you push to the repository doesn't break any of the tests tha...
CodeMentor Codementor is an online marketplace connecting developers with experts for on- demand 1:1 help via screen sharing, video, and text chat.
For my blog here at Paulund I use Laravel to run it. The reason why I use Laravel is because it's the framework I use at my day-to-day job and having my blog ra...
In this tutorial we're going to create a command line alias to quickly enable or disable xdebug. This will need to point to the xdebug extension file. ...
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...
Digital Ocean Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
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...
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...
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 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...
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...