DevOps Explained: Benefits and Top 10 DevOps Tools of 2020

Benefits and Top 10 DevOps Tools of 2020 Here i’m going to explore major benefits of top 10 DevOps tools. Better Employment Opportunities :- DevOps is more…

Read More

Read, Update, and Delete data through Model.

Read Data from Database through Model First, we have to connect our model and database in our controller. For that we use below code in our controller:-…

Read More

Inserting data in Database through Model.

There are many methods for inserting data in database through Model. See below:- Migration is common in all methods in which we defined the table name and…

Read More

How to Update and Delete data from database using Controller.

Update data from the database To Update the data in database table we use update(). See the syntax below:- See the below code for updating data in…

Read More

How to Insert and Read data from database using Controller.

First, make a Controller and View. To use the database query in the controller, we have to use database class (use DB;) in the controller. See the…

Read More

How to Update and Delete Data From Database table using Tinker.

How to Update Data in the Database table. We use the update command to update the data in the database table. Syntax Suppose, I want to update…

Read More

How to Read Data from Database in Tinker.

To read data from the database, we use the below commands:- 1. DB::table(“Table_name“)->get() :- It returns all the data present in the given table of database. See…

Read More

Tinker Command and How to Insert Data in Database using Tinker in Laravel.

Tinker Command(php artisan tinker) is used to interact directly with the database table to insert, delete, update data. It executes SQL commands through the command line. When…

Read More

Multi Auth with Roles and Permissions.

Step:-1 first of all you have to install xampp server use this url for download xampp: https://www.apachefriends.org/index.html Step:-2 Download gitbash and install the gitbash use this url:…

Read More

Rolling Back migration in Laravel.

Rollback command is used to rollback the last migration means remove the last migration from the database. Laravel provides different commands to rollback tables from the database,…

Read More

Migration in Laravel.

Migrations are like version control for our database. Means we don’t have to worry about versions of the database and laravel because it interacts with the database…

Read More

How to Download Full Youtube Playlist in 1 Click.

I’ve tried over 20-30 applications and many websites also to download full youtube playlist with serial no. but none of them works, some works but not free….

Read More

Elasticsearch-ELK Errors and Solutions Database

Elastic Search Error – Node is started with node.data=false, but has shard data Elastic Search Error – max virtual memory areas vm.max_map_count [65530] is too low, increase…

Read More

ElasticSearch Error – filebeat – filebeat.yml – did not find expected key

Errors Solutions Check filebeat.yml: Only one file beat output is supported …check #output.elasticsearch is comments

Read More

ElasticSearch Error – filebeat – filebeat.yml – more than one namespace configured accessing ‘output’

Errors Answer Check output.logstash in filebeat.yml: should be uncommented.

Read More

ElasticSearch Error – this can cause resize pauses and prevents mlockall from locking the entire heap

Error Message Solutions Setting the parameter -Xms to the same value of -Xmx in /etc/elasticsearch/jvm.options solved the problem 🙂 Thanks

Read More

How to include sub-views in Laravel.

First of all, we make a new directory in the view folder in which our subviews files are stored. To make subviews we use below function. @include(address_of_subviews_file)…

Read More

Elasticsearch Command Lines and their Usage Guide

elasticsearch elasticsearch-certgen elasticsearch-certutil elasticsearch-cli elasticsearch-croneval elasticsearch-env elasticsearch-env-from-file elasticsearch-keystore elasticsearch-migrate elasticsearch-node elasticsearch-plugin elasticsearch-saml-metadata elasticsearch-setup-passwords elasticsearch-shard elasticsearch-sql-cli elasticsearch-sql-cli-7.6.0.jar elasticsearch-syskeygen elasticsearch-users x-pack-env x-pack-security-env x-pack-watcher-env

Read More

Conditional (@if, @else, @elseif, @isset, @empty, and @unless) Statements in Laravel.

First of all, we make a condition.blade.php file in which we define our conditions. See the below image. After that, we make a function named condition in…

Read More

How To Fix “Windows 10 Automatic Repair”

Rest your Pc Fully if You Want to Solve This Problem Click On “Advance Option” Use This “Troubleshoot” Option For Reset Pc After Reset Pc: You C…

Read More

How to check variable is declared or not in Laravel to avoid an Error.

Suppose we have not declared a variable in the controller and calling it in views, then it shows undefined variable Error. See the below image. Suppose, we…

Read More

[SOLVED] Error: Access CSS/js file in Local and Laravel-development Server both.

In Laravel, our all assets are in the public directory, But it gives error while we run Same code in Laravel development server and Local Server. See…

Read More

How to Write an Essay in 8 Hour: Benefits of Ordering a Paper Online

Many students get to a lot of papers to write. No matter if you study in school or college, you will probably get a lot of homework….

Read More

Master/fixed layout in Laravel.

@yield(“Parameter”) :- It is a section which requires to be filled in by your view which extends the layout. You could pass it a default value through the second…

Read More

How to pass data to views in Laravel.

There are 4 ways to send data to view:- 1. Using an array function : array()2. Using compact function : compact()3. Using with : with([]) 4. Using…

Read More

How to Install and create a project in Laravel for Windows User!

Before installing Laravel Composer, ensure that you have installed Xampp Server and Git-Bash. If not installed then go to this link and install:- xampp:- https://www.apachefriends.org/download.htmlGit-bash:- https://gitforwindows.org/ After…

Read More

Terraform Modules Tutorials and Complete Guide

Terraform Modules explained!!!‘ How to use one module’s variable in another module in terraform?

Read More

Example of Terraform Code for Lab and Demo

Example Code of Terraform AWS VPC Terraform Hello world Program Terraform example program for aws_security_group, aws_instance and provisioner Working with Terraform AWS provider, resources aws_key_pair

Read More

Terraform Errors and Solutions Database

Terraform Error: Key is not in valid OpenSSH public key format Terraform Error: Invalid reference Terraform Error: Invalid variable name Terraform Error: Failed to read ssh private…

Read More

Numeric Array, Array Function, and Double Array Operator in PHP.

Numeric Array Sample Program Output:- Rahul Array Function Array() function is used to create an array. Syntax $array_name = array(“value1″,”value2″,”value3”,……..); For Example $name = array(“Sushant”,”Rahul”,”Sameer”,”sujeet”); Note:- By…

Read More