Top 10 Laravel Interview Questions And Answers 2020.

1- What is Laravel Framework? Laravel is a free, open-source PHP web framework, created by Taylor Otwell and intended for the development of web applications following the model–view–controller…

Read More

How to use multiple authentication in Laravel.

Step:1 Step:2- click on Git base Here. It will look like this Step:3- you have to crate own project and put here Step:4- Press Enter than project…

Read More

Laravel – Remove Public from URL using htaccess

Step 1: Rename File In first step it is very easy and you need to just rename file name. you have to rename server.php to index.php at…

Read More

Best Laravel Packages to create awesome Admin Panels & other functionalities.

Here i am going to discuss about most trending and awesome packages for Laravel Developers. with these packages, you can easily embed some cool features like captcha,…

Read More

Eloquent-sluggable in laravel Installation failed? (Solution)

Conclusion: don’t install laravel/framework v5.7.9 cviebrock/eloquent-sluggable 4.8.x-dev requires illuminate/config ~5.8.0 -> satisfiable by illuminate/config[5.8.x-dev Solution:- Depending on your version of Laravel, you should install a different version…

Read More

Useful Visual Studio Code Extensions.

1 :-Visual Studio Code HTML Snippets This extension adds rich language support for the HTML Markup to VS Code, including: Full HTML5 Tags Colorization Snippets [partially implemented]…

Read More

Creating a OAuth 2.0 Protected REST API In Laravel

Download and install WAMP or XAMPP Server Download and install composer Open Gitbash and Set the composer composer global require “laravel/installer” Create a new Laravel Project Refer…

Read More

How to enable Google reCaptcha with Laravel?

Step 1 – First go to https://www.google.com/recaptcha/intro/v3.html then click on Admin console Step 2 – Genereate new recaptcha (click on + button to create) Type label name…

Read More

Laravel Social Login using Socialite

Installations—- (laravel 5.5) composer require laravel/socialite “^3.2.0” configuration—–(config/services.php) ‘facebook’ => [ ‘client_id’ => env(‘facebook_CLIENT_ID’), // Your facebook Client ID ‘client_secret’ => env(‘facebook_CLIENT_SECRET’), // Your facebook Client Secret…

Read More

Setting a Local Development Environment for Laravel on Windows | Install Laravel on Windows

Many developers use Windows for PHP projects, we will cover a basic XAMPP Setup for a Laravel project. Following these easy steps will help you run your…

Read More

Todo Application in Laravel

1.Create Project in Laravel Composer create-project laravel/laravel todolist 2.Create CRUD Controller php artisan make:controller TodosController –resource 3.Route setup of CRUD Controller routes/web.php 4.Create Database todolist localhost/phpmyadmin create…

Read More