Latest Laravel/PHP Articles

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


Laravel has a lot of helper artisan commands, one of them allows you to clear the cache. php artisan cache:clear This command has an optional parameter allowing...
This is a small command line helper to quickly lookup the options and helpers available to different commands. function lookup() { curl cht.sh/$1 } Now...
Blade is a PHP templating framework to use with your Laravel application. The blade templates are compiled down to normal PHP code. We can also extend blade by...
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.
When browsers load assets such as CSS and JS they will locally cache them so that they can served quicker the next time users visit the website. A way around th...
Testing is an important area of any application, when you write some code you need to make sure that all your logic is working correctly. In this tutorial we're...
In this tutorial we're going to learn how to setup and use scheduled tasks with Laravel to perform the same tasks on a regular timescale. To use scheduled tasks...
In this tutorial we're going to learn how to use and create your own Laravel facades. https://paulund.co.uk/how-to-create-a-facade-in-laravel#what-is-a-facadeA...
CodeMentor Codementor is an online marketplace connecting developers with experts for on- demand 1:1 help via screen sharing, video, and text chat.
In this tutorial we're going to learn how we can setup Docker containers for development with a Laravel application. https://paulund.co.uk/laravel-development-w...
In a recent project I had to add a constraint to a relationship to make sure it only loads one of a relationship data. In the documentation it shows how you wil...
In this tutorial we're going to learn how we can use our.env variables inside the webpack.js config. This is perfect for the example of when you have a differen...
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...
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.
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...
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. ...