Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours scrolling social media and waste money on things we forget, but won’t spend 30 minutes a day earning certifications that can change our lives.
Master in DevOps, SRE, DevSecOps & MLOps by DevOpsSchool!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

How Control flow in Laravel

Route::get(‘task’,’TaskController@index’)->name(‘task’); Explanation:- name(‘task‘) is given in the URL as http://127.0.0.1:8000/task. Control flow:- As the URL is hit the control will go the route(web.php), there it will get Route::get(‘task’,’TaskController@index’)->name(‘task’); Here, there will be a name match from the URL and if there is match then there will be a function call named index and route will … Read more

CRUD Operation Detailed Explaination with Example.

Before performing CRUD operations we need to do some of the basic tasks. These includes:- 1. Installing Laravel 2. Creating Laravel Project 3. Making Model 4. Migrating After that we are good to go for the operation. Explanation for the above operations is given in link below https://www.scmgalaxy.com/tutorials/crud-operation-prerequisites/ 5. Create Operation Create a folder Under … Read more

CRUD Operation Prerequisites.

Before performing CRUD operations we need to do some of the basic tasks. These includes:- 1. Installing Laravel 2. Creating Laravel Project 3. Making Model 4. Migrating After that we are good to go for performing the operation. Laravel the most popular PHP-based framework for creating database-driven apps is based on the MVC (Model-View-Controller) architecture … Read more

Laravel 5.8 CRUD Tutorial with examples

Create Route for View: To write it in a simpler way: Example:- Route::view(‘about’,’aboutme’) -We should create view in structured way(inside folder) that means all the views should not be in the view folder and we can make it in structured way by making folder in views. -To create route for view which is inside folder: … Read more

Setup a Laravel Project and Understand the Folder Structure

Setting up a Laravel project is an easy task. We need to have the composer installed in our system. Then we need to download the Laravel installer, the command for installation iscomposer global require “laravel/installer=~1.1”if this does not works then we could just writecomposer global require “laravel/installer”and it would install the file.Then we need to … Read more

A brief description on Laravel

Laravel is a backend web application framework for PHP. It is a robust framework that provides easy development with many essential features. It provides utilities for application deployment and maintenance. It is a great platform for beginners who wants to implement their PHP skills with greater ease as it has a lot of libraries included. … Read more

Introduction to Laravel

Laravel is an open source PHP framework. Framework is a tool which is used to make modern, fast and scalable products. Laravel is based on model–view–controller (MVC) architectural pattern. Some of the features of Laravel are a modular packaging system with a dedicated dependency manager, different ways for accessing relational databases, utilities that aid in … Read more