laravel 8
-
Oct- 2023 -23 OctoberWeb Development
Why Hiring an Experienced Laravel Developer is Key to Your Success
In the ever-evolving landscape of web development, choosing the right framework is pivotal to the success of your projects. Laravel,…
Read More » -
Jan- 2022 -22 JanuaryLaravel
Laravel, what can each() function do?
The each the method will iterate over items in the collection and allow you to execute code on each item. The difference…
Read More » -
12 JanuaryLaravel
Improved Laravel Routes Tips for Laravel 8.x
What are Routes ? The route is a way of creating a request URL for your application. These urls do not…
Read More » -
9 JanuaryLaravel
Improved single-method accessors and mutators in Laravel 8.x
What is Accessor? Accessors create a dummy attribute on the object which you can access as if it were a database…
Read More » -
Nov- 2021 -21 NovemberLaravel
Build a REST API with Laravel API resources
This tutorial shows how to use the Laravel API resources feature to build a REST API. API resources were introduced…
Read More » -
12 NovemberLaravel
How to Use Amazon FIFO SQS in Laravel queue?
I want to point out to others who might stumble across the same issue that, although editing SqsQueue.php works, it will easily…
Read More » -
7 NovemberLaravel
How to Sort Collections in Laravel and PHP
You can use sortBy for laravel collection for sorting by custom orders. You can do like this: $collection = collect($array);…
Read More » -
Oct- 2021 -30 OctoberLaravel
Saving an Image from URL in PHP/Laravel
Sometimes, need to download an image from a particular URL and use it in the project. It’s easy to go…
Read More » -
30 OctoberLaravel
How to Create File Object from Path in Laravel?
In this tutorial, we will show you how to create file objects in laravel. you’ll learn laravel to create file…
Read More » -
27 OctoberLaravel
Implement Queue in Laravel 7/8
Laravel gives us a built-in queue system that helps us to run tasks in the background and configure how the…
Read More »