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!

Creating tables in Migration

In Laravel to create a new database table first of all we need to make a migration which we have explained in the previous blog. I recommend you to read that blog, you can refer the link given below: https://www.scmgalaxy.com/tutorials/explanation-of-database-migrations-in-laravel-5-8/ Once we are done with creating a migration file, to create a new databasetable we … Read more

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

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