Complete guide of Laravel certification courses, tutorials & training

What is Laravel Laravel is a reliable and simple to use open-source PHP framework. It adheres to the model-view-controller pattern of design. Laravel makes use of pre-existing parts from other…

Read more »

Top 100 laravel interview questions and answers

1) What is Laravel? Laravel is an open-source widely used PHP framework. The platform was intended for the development of web application by using MVC architectural pattern. Laravel is released…

Read more »

Directory Structure Of Laravel Application

devopsschool – This is Project Folder app – The app directory contains the core code of your application. bootstrap – The bootstrap directory contains the app.php file which bootstraps the…

Read more »

Laravel – composer update asking about – phpunit/phpunit[7.5.0, …, 7.5.20] require ext-dom *

When ever you find above issue then do one thing that your ubuntu server is missing with some packages like ext-dom & php-xml. you have to do simply below things…

Read more »

Simple Ajax CRUD Application in Laravel

Step 1 – Create a fresh laravel projet First off all , create a project using following command given below – Change Directory to AjaxCrud folder Step 2 – Configure…

Read more »

Create Rest API with Laravel Passport Authentication

Laravel passport Laravel Passport is an OAuth2 server and API authentication package that is simple and enjoyable to use. We will use laravel passport to authenticate token-based request except for session You have to just…

Read more »

HOW TO CREATE EVENT CALENDAR IN LARAVEL? PART-5

Event Calendar Output

Read more »

HOW TO CREATE EVENT CALENDAR IN LARAVEL? PART-4

Step 1.  eventpage.blade.php Step 1.  addevent.blade.php Step 3.display.blade.php Step 4.editform.blade Run the server, code is given below- Check output on the next page – How to create an event calendar…

Read more »

HOW TO CREATE EVENT CALENDAR IN LARAVEL? PART-3

Step 1.Create a Database in phpMyAdmin. (Write the same name of database which was written in .enf databse name). Step 2.  We use the migrate command to create the column…

Read more »

JSON Web Token (JWT) Authentication via API for Laravel & Lumen.

JWT (JSON WEB TOKEN) JSON Web Token (JWT) is an open standard that allows two parties to securely send data and information as JSON objects. This information can be verified…

Read more »

What is Framework in programming language?

What Framework A Framework may include predefined classes and function that can be used to process input, manage hardware devices, and interact with system software. The purpose of the framework…

Read more »

[SOLVED] Argument 1 passed to Tymon\JWTAuth\JWT::fromUser() must be an instance of Tymon\JWTAuth\Contracts\JWTSubject

Step 1. Go to config/app.php and add to Providers. Step 2. In your terminal publish the config file:  and add it to your list service providers in app.php Step 3. In…

Read more »

How to Create REST API in Laravel.

API is also known as Web services. Web services is very important when you are creating web and Mobile app. You require API in mobile application development. If you Don’t know how…

Read more »

Request Validation in Laravel.

Request Validation using ValidatesRequest Trait in Laravel. (Click to Open) Request Validation using Form Request in Laravel. (Click to Open) Request Validation using Custom Validator in Laravel. (Click to Open)

Read more »

CRUD Operation Using Model in Laravel.

Inserting data in Database through Model. (Click to Open) Read, Update, and Delete data through Model. (Click to Open)

Read more »

CRUD Operation Using Controller in Laravel

How to Insert and Read data from database using Controller. (Click to Open) How to Update and Delete data from database using Controller. (Click to Open)

Read more »

CRUD Operation Using Tinker in Laravel.

How to Insert Data in Database using Tinker in Laravel. (Click to Open) How to Read Data from Database in Tinker. (Click to Open) How to Update and Delete Data…

Read more »

How to Install Laravel Framework in Windows

By installing three software, we can work in Lvr, so let’s know which angle is the software which we can install Installing XAMPP Installing Composer Installing Laravel Open the XAMPP…

Read more »

How to Create Virtual Host for Laravel Project on Xampp in Windows 10.

There are Two Changes is to done to Create Virtual Host for Laravel Project on Xappp in Windows 10. Just Follow the below Steps :- Step 1 :- Go to…

Read more »

How to Image Upload and Crop in Laravel with Ajax

In this tutorial, I am going to tell you how to image upload and crop in Laravel with Ajax. To crop the image using jQuery croppie plugin, that may help…

Read more »

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 »