How to Insert and Retrieve Data in Database – Laravel Framework

In this example, I am going to show you how to insert data in the database using laravel framework PHP. First, creating table the SQL query: Now, create three file…

Read more »

How to Generate New Password in Laravel?

How to Generate New Password in Laravel? Step 1. Create a new Project in Laravel, so Open git Bash. Write down the following command:- Step 2. Now, Move to project directory on git Bash, so write down the following…

Read more »

Directory Structure of Laravel

The image is showing the files and directories of laravel. It is automatically created when we create a project using a composer or laravel installer. Let’s we overview these files…

Read more »

How to Verify an Email in Laravel?

How to Verify an Email in Laravel? Step 1. Create a new Project in Laravel, so Open git Bash. Write down the following command:- Step 2. Now, Move to project directory on git Bash, so write down the following…

Read more »

How can send multi email using laravel 5.8

Step:1 open git base in C:\xampp\htdocs Step:2 past this project name in the gitbase here composer create-project –prefer-dist laravel/laravel multimail “5.8.*” Step:3 Make One controller php artisan make:controller MultimailController Step:4…

Read more »

How to install Laravel

To install laravel we need composer dependency tools. So, let us know about composer. Composer Composer is a tool for dependency management in PHP.It allows you to declare the libraries…

Read more »

What is MVC and Why use MVC?

Model View Controller (MVC) The MVC is an architecture pattern that separates an application into three main logical components Model, View, and Controller. Each of these components has its own…

Read more »

How to Login with Facebook, GOOGLE and twitter in Laravel?Part-2

How to Login with Facebook, GOOGLE and twitter in Laravel? Click this, Login with Facebook Here, we’ll start Login with Google. Step 1. Open this URL Google Developers Console to…

Read more »

How to Login with Facebook, GOOGLE and twitter in Laravel?Part-1

How to Login with Facebook, GOOGLE and twitter in Laravel? Step 1. Firstly, Create a new Project in Laravel, so open git bash. Write down the following command:- Step 2….

Read more »

What is Laravel and its Features

Laravel is one of the most popular and widely used open-source frameworks today. Laravel is a PHP MVC framework that offers a standardized and feature-packed platform for high performing PHP…

Read more »
Laravel Migration

How to add a column or columns to an existing table using migration in Laravel.

Read more »

How to upload file in database with Laravel 5.8

Step:1 composer create-project –prefer-dist laravel/laravel uploadfile Step:2 make a controller like that.php artisan make:controller ImageUploadController Step:3 amke a Modelphp artisan make:model File -m Step:4 put this code in the create_files_table $table->string(‘filenames’);…

Read more »

How to implement Flash message in Laravel 5.8

Step:1 Make a page. resources/views/my_message.blade.php Copy this code and paste in the my_massage.blade.php Step:2 make a controller php artisan make:controller MessageController Step:3 Copy this code and paste in the MessageController.page…

Read more »

How to create captcha code in Laravel 5.8

Step:1composer create-project –prefer-dist laravel/laravel captcha “5.8.*” Step:2 we have to add mews Captcha package.composer require mews/captcha Step:3 open config/app.php file and add service provider and alias. Step:4 routes/web.php paste this code in…

Read more »

How to Convert HTML to Pdf in laravel.

Step:1 Step:II make controllerphp artisan make:controller PdfController Step:III Install Package composer require barryvdh/laravel-dompdf Step:IV open your config/app.php put this code after Providers Barryvdh\DomPDF\ServiceProvider::class,Step:V open your config/app.php put this code after aliases ‘PDF’…

Read more »

How to Delete data in Multiple Tables (with Relationship) Laravel.

To delete data from database with with relationship with two tables in Laravel we have to use the solution that I’ve used. Now, Question is Where and when we use…

Read more »
laravel slack

How To Send Slack Notification with Laravel

It seems like a topic for basic Laravel developer, but while it’s easy to send emails, but the whole system of various notifications is much deeper, and worth studying. Sub-topics: In the…

Read more »
Laravail send mail with attachment

How to send email in laravel with attachment without saving in database.

I was trying to send an email with an attachment that will be uploaded by the user and then sent to an admin email. In this tutorial, we will discuss…

Read more »

How to Create Multiple Role Based Authentication and Access Control in Laravel Application

Step1- Open command prompt or Git Bash on xampp/htdocs directory Step2- Create Laravel New Project write this command Step3- Move to project directory on git bash Step4- For User Authentication…

Read more »