Latest Laravel/PHP Articles

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


The Laravel team is proud to introduce you to our new podcast: Laravel Internals - a live YouTube podcast about Laravel, Forge, Vapor, Envoyer related news, and...
· November 16, 2020 · ⋆ Laravel With the help of EXPLAIN, you can see where you should add indexes to tables so that the statement executes faster by using ind...
My project botmake.io usually had around 1000 daily visitors with quite a stable graph for a long time. The stack of the project is LEMP and it is built with La...
Digital Ocean Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
Encryption is the process of converting a normal message (plaintext) into a meaningless message (Ciphertext). Whereas Decryption is the process of converting me...
Writing software does not follow engineering principles or formulas like we have for building bridges or designing airplane wings.
In general, building/developing a webshop or an online store is not easy. So it’s good if we do have a starting point and there is a package that we can use alr...
By default, Vapor routes HTTP traffic to your serverless applications using AWS API Gateway. As an alternative to API Gateway, some customers have chosen to rou...
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.
For my current project I am building a single page Vue application that communicates with a Laravel backend using only API calls. This means the default methods...
If you've used the null coalescing operator in the past, you probably also noticed its shortcomings: null coalescing doesn't work on method calls. Instead you n...
If you want to test out the new feature of php8 on MAC OS, you can always build the PHP from the sources. But I propose a quicker and more secure(isolated) meth...
In my last article, I talked about how you can minimize your controller by putting the code out from it and put it somewhere else. Rest of the code we put in a...
Digital Ocean Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
Over time any software project will get larger, and with laravel projects this often means that the migrations folder can get very large. In laravel 8 the schem...
In this post, we will take a look at how we can send real-time notifications with Laravel, the Laravel Websockets package, and Laravel Echo. Today, many tasks h...
You will see this error if you try to run some artisan commands programmatically from within an HTTP request: This is because Laravel will try to prompt for con...
We didn’t use single action controller for post controller becase we are giong to add search function here in the next post. In this tutorial, we will be using...