Latest Laravel/PHP Articles

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


Ran into this error when compiling some software from source: The fix is, luckily, rather easy. If you have Homebrew installed: Using the apt package manager: A...
You can get the client real IP in PHP applications using following code: Laravel provides a convenient way to retrieve client IP: But they are not working when...
InertiaJS is a recently hyped “glue between frontend & backend” for quickly writing Laravel applications with modern JS frameworks like VueJS without writing an...
Digital Ocean Providing developers and businesses a reliable, easy-to-use cloud computing platform of virtual servers (Droplets), object storage ( Spaces), and more.
Starting today, you can provision T4g AWS servers using Laravel Forge. These instance types are powered by AWS Graviton2, a processor built by AWS using 64-bit...
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...
Fathom Analytics | Fast, simple and privacy-focused website analytics. Fathom Analytics | Fast, simple and privacy-focused website analytics.
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...
Fathom Analytics | Fast, simple and privacy-focused website analytics. Fathom Analytics | Fast, simple and privacy-focused website analytics.
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...