Here’s how it looks in routes/web.php:Route::group(['prefix' => '{locale}'], function() { Route::get('/', function () { return view('welcome'); }); Auth::routes...
You may hear here and there than PHP date and time API is a bit of a mess and indeed everything is not perfect, but it’s not a reason to get your own code and a...
Eager loading is a concept in which when retrieving items, you get all the needed items together with all (or most) related items at the same time. This is in c...
Laravel is a really nice framework for building REST APIs and one of the most important parts of REST APIs is Authentication and Authorization. Most tutorials w...
As we saw in the previous post of this series, we want our tests to provide us with fast feedback about the correct behavior of our application. In this post, w...
Laravel is an open source PHP framework designed for the faster development of MVC web applications in PHP. Composer is required for installing Laravel dependen...
It is a project that shows the creation of a basic catalog of products in an hour. This catalog has the information loaded, so we don’t need to add more product...
Laravel is an extensible framework. It makes extending core services, and even userland services a cinch. It’s this flexibility that we so love about it. We’ll...
When creating an API we often have two great worries, one is the connection between the frontend and the backend (eg: Authentication), and the second is error h...
Many times we face the problem that data is lost or database get corrupted. So it’s necessary to keep regular backup of database and it’s tedious to take backup...
Achieve superior email deliverability with ToastMail! Our AI-driven tool warms up inboxes, monitors reputation, and ensures emails reach their intended destination. Sign up today for a spam-free future.
A simple tutorial to help users understand how to use Twilio SMS API to reduce response time when your cron jobs fail In this tutorial, we are going to learn ho...
Recently Kirby Version 3.0 was released. As I have worked with Version 2 quite some time in the past I figured, why not give it a try? Just before Christmas I b...
Multi-tenancy concept has encountered the laravel community recently and made some noise due to the fact it’s going to make your life easier imagine the followi...
Application programming interface or API is an interface for software. APIs are used by software applications in much the same way that interfaces for apps and...