What is Laravel and use cases of Laravel?

What is Laravel? Laravel is an open-source, free PHP web framework designed for the development of web applications following the model-view-controller (MVC) architectural pattern. It was generated by Taylor Otwell…

Read more »

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 »

[SOLVED] Laravel : Supervisor FATAL/BACKOFF Exited too quickly (process log may have details)

Problem I’m trying to use Laravel queues with a supervisor but the service is not working properly. When I try to check status:$ sudo supervisorctl status$ laravel-worker:laravel-worker_00: BACKOFF Exited too…

Read more »

How to Login with Token in Laravel PHP Framework?

How to Login with Token in Laravel PHP Framework? Step 1. Create a new Project, so write down the following command on Git Bash: Step 2. Move to the current…

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 »

What is Composer and How to Install Composer?

In my previous article I have explained about the best concept about Laravel in which I mentions what is Laravel and many things about its feature. if you want to…

Read more »

What is Laravel? and Its Features.

In this Tutorial we are going to learn about Laravel. But most importantly you have to know about PHP first. If you don’t know about PHP and what is PHP…

Read more »

How to Fix ” Vue packages version mismatch:” error in Laravel 5.5

If you find any issue like above then run below Commands for solution : Solution : Above Command solve my issue if you are still in issue then run below…

Read more »

Laravel say that Auth guard [user] is not defined

I am trying to override default logout button in my Laravel project. so I defined below code in my LoginController->logout() function. but it’s showing that my guard is not defined….

Read more »

Syntax- local.ERROR Class ‘BarryvdhDebugbarFacade’ not found {exception[object]

When Show this type of error then may be below line missing in your “config/app.php“ So, Add this line in your Config/App.php ” ‘aliases’Add This After that showing this type…

Read more »

Laravel 5.5 Error – “The page has expired due to inactivity. Please refresh and try again.”

i am trying to submit a form with some fields and showing this error “The page has expired due to inactivity. Please refresh and try again.” so when I look…

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 »

The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths. Laravel 5.5

If you find this issue then you should remove App_key From .env and then run below command after running above command your issue will be resolved. Resources : Click Here

Read more »

DataTables images issues like sort_asc.png & sort_both.png not found

Hi Friends, I am facing these issues for the last 1 month so I decided to solve this issue then I tried and I succeed. this is just a simple…

Read more »

[SOLVED] ErrorException preg_match(): No ending delimiter ‘/’ found

I’m working on Laravel 5.8. I’m trying to use Validator to validate a name field with regex, here is my rule below:   But as soon as I call the…

Read more »

Basic SQL Command in a database

The SQL ORDER BY Keyword The ORDER BY keyword is used to sort the result-set in ascending or descending order. The ORDER BY keyword sorts the records in ascending order…

Read more »

How to Display Recent and popular data from Database using left join and OderBy

Fist Step In Welcome.blade.php file for Table Secound Step In Pages.blade.php Third Step In Routing, Go To web.php Forth Step In GestController.php This is Return $gallery View This is View…

Read more »

Composer update fails with composer.json php version ^7.1.3

Hi geeks, yesterday i tried to run a command in my laravel project ver 5.8 then it’s showing two issue in my git bash. my php version in composer.json file…

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 »