Latest Laravel/PHP Articles

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


https://paulund.co.uk/cheatsheetshttps://paulund.co.uk/subjectshttps://paulund.co.uk/toolshttps://paulund.co.uk/contact
In this tutorial we're going to create an RSS feed to use with Nuxt3 and https://content.nuxtjs.org/ module. First we're going to install the https://www.npmjs....
There has been many improvements in Nuxt3 one of those is the use of plugins in the application. Nuxt will automatically read the files in your plugins director...
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.

paulund.co.uk

Log Axios Requests
When working with APIs in your Javascript application it can be useful to be able to debug the requests and responses you're using to interact with the API. Axi...

paulund.co.uk

Composer Scripts
In this tutorial we're going to investigate how you can store common commands within composer, giving you some handy shortcuts. https://paulund.co.uk/composer-s...
With Laravel it makes it really easy to test HTTP requests by using the trait MakesHttpRequests. This has all the methods you will need to run HTTP requests fro...
With the upgrade to Laravel 6 the helper functions have been deprecated and replaced with using the Arr and Str facades directly https://laravel.com/docs/master...
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 to use v-model attribute with custom components to return the values of the custom component back to the parent compon...
LetsEncrypt allows you to install free SSL certificates for your website. Over time LetsEncrypt have upgraded and changed the way it works for security reasons,...
Here is a quick code snippet that will allow you to read the memory usage of files. You can use the command du this will go through the current folder and outpu...
Below is a helper function you can use to take an array and group by a key. const groupBy = function (data, key) { return data.reduce(function (carry, el) { var...
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.
Recently I had to create a model factory for my tests but I didn't want it to fire the standard Laravel model events. Model events are fired whenever a record i...
Out of the box Laravel always you to have read/write database connections. This will allow you have different database connections for SELECT queries and INSERT...
Here is a quick command you can use to clean up the node_modules on your computer. This will find and remove all folders on your computer named node_modules. Al...
If you're like me you always need to lookup the difference between local storage, session storage and cookies. Stores data with no expiry date Cleared only via...