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!

Database: Query Builder

In this we will learn how to use database query in the controller. First of all we need to import database class by mentioning: By importing DB class we can execute data through controller. Now we need to make a function in the controller and insert the values. Then in the blade view we need … Read more

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

Javascript and its Reserve Keywords

JavaScript is a lightweight, interpreted programming language in the world and that makes it a programmer’s great choice. Javascript helps us developing great front-end as well as back-end softwares using different Javascript based frameworks like jQuery, Node.JS etc.\ Here, I would like to talk about the reserved keywords in the Javascript. Keywords are reserved words in JavaScript that we should not … Read more

WHAT IS HTML?

HTML provides a way of displaying Web pages with text and images or multimedia content. HTML is not a programming language, but a markup language. An HTML file is a text file containing small markup tags. The markup tags tell the Web browser, such as Mozila Firefox or Google Chrome, how to display the page. … 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

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