Latest Laravel/PHP Articles

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


Because I recently switched to working on an M1 Macbook, I could no longer rely on my Homestead-driven development environment. I have now switched to a newly c...
If you're writing tests for your Laravel application and you need to interact with its storage system, you might have come across the Storage::fake() method. Th...
Array unpacking is a sleek way of assigning the value of array elements to variables in one shot like so. Now, there might be a situation where the variable tha...
CodeMentor Codementor is an online marketplace connecting developers with experts for on- demand 1:1 help via screen sharing, video, and text chat.
Here's a cool feature the Chrome team is working on. It's already available in Canary. Stay up to date with all things Laravel, PHP, and JavaScript.
Of all of the design patterns you could use in your code, the adapter pattern is one of my all time favourites. It allows you to abstract the implementation to...
Laravel Impersonate is a fantastic package that makes it easy to authenticate as your users. You just need to add a simple trait to your user model and imperson...
« back published by @mmartin_joo on May 15, 2022
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.
Many to many relationships occur when multiple records in a table have an association with multiple records in another table. For example, a many-to-many relati...
You have worked hard to build your Laravel application and it’s now time to deploy it to the internet so that others can be able to see your application. But ho...
You have worked hard to create your application and now it’s time to deploy it so that others are able to see your application. But how? You may wonder. In this...
What is Laravel Sanctum? Laravel Sanctum is a simple way for authenticating Single Page Applications(SPAs), Mobile Applications, and simple token-based APIs. It...
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.
Heroku is a cloud platform as a service that supports multiple programming languages. It supports programming languages such as PHP, Python, Ruby, Node.js, and...
In any modern web development, a developer is required to bundle their source code and deploy it to a server so that it can be accessible to the public. One way...
Firebase is a Google-backend application development software that enables developers to develop their applications with ease by abstracting the backend and all...
Open Authorization(Oauth) is a way of getting access to protected data from an application. It’s is secure in the sense that it does not require users to log in...