In this article, we’ll explore the basics of Laravel migrations and how to use them effectively. Migrations are like version control for your database, allowing your team to define and share the application’s database schema definition.
Laravel
ElasticSearch Example with Laravel 9
This laravel tutorial help to integrate and build a custom search engine based on Elasticsearch. We will integrate Elasticsearch nosql database with laravel and fetch data using Elasticsearch query.
Laravel 10 is now released!
The laravel 10 has been relased with php 8.1 minimum requirement. Laravel 10 builds on the improvements made in Laravel 9.x by adding argument and return types to all application skeleton methods and stub files used to generate classes in the framework.
Laravel 8/9 Logs Management with Example
This tutorial helps to understand laravel 8/9 logging. The logging help to understand what’s happening in your application. You can also identify the error line with the correct understandable exception message.
Simple Uses of Laravel 8/9 Routes Group
This tutorial help to understand Laravel 8/9 group with example. We will create a route group in Laravel 8, bind similar type of routes into a group. We can also define routes prefix and apply middleware. Routes Groups are helpful in the situation when you want to apply one attribute to all the routes.