What is API & How it works in All Programming Language?

In this blog, I am going to Explain What is API and How it works in All Programming Language. So, API means Application Programming Interface (API) through this We can…

Read more »

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 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 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 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 »

In Laravel, how can I clear laravel.log?

In my Laravel project i want to clear my laravel.log file but i have no idea how to do it. so i found a solution on it. First of all…

Read more »

How to Setup Laravel default password reset mail

Most web applications provide a way for users to reset their forgotten passwords. Rather than forcing you to re-implement this on each application, Laravel provides convenient methods for sending password…

Read more »

How to Handle Long processing asynchronous request through Queue using database in Laravel?

in this blog you are going to see that whenever you want to send email to multiple user then your view page takes a lot of time. so how can…

Read more »

How to deploy Laravel application on AWS EC2

In the first step you should login to your putty using user name and password. After Login you should run command sudo -s for root access then you should change…

Read more »

Searching, Column Sorting with Pagination using Ajax in Laravel 5.5

Step 1 : Instal Laravel Application  If you have not install Laravel application, then you have to open command prompt, and run composert command, and then after you can run…

Read more »

Laravel Error – Call to undefined method Illuminate\Database\Query\Builder::seokeyw()

I got this error today so I am going to tell you how to solve this error in your Laravel project. First of all, You should check that Model have…

Read more »

Upload multiple Image in local drive with Progressbar using laravel 5.8

Step: 1– Install Laravel 5.8 ApplicationStep: 2– Create ControllerStep: 3– Create View Blade FileStep: 4– Set Route of Controller MethodStep: 5– Run Laravel Application Step:1 composer create-project –prefer-dist laravel/laravel upload_image…

Read more »

[SOLVED] Laravel Error: Integrity constraint violation: 1062 Duplicate entry

This Error is found when we insert duplicate data which already exist in the database. To overcome from it just make the key_name unique in Validation. See the below code:-

Read more »

Laravel Error – Impossible to create the root directory

I found this error on my laravel project. when I want to upload images to my profile pic then I saw the above error. so please be focused on my…

Read more »