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 »