How to Upload files or Documents in Mysql Database Using laravel.
Step: 1- First of all you have to go:- Step:2- then right-click in this Drive and got to Git Bas Here and click. Step:3-run the composer step: 4- write the…
Read more »Exploring Directory Structure in laravel.
Laravel applications follow the Model-View-Controller architecture design pattern. Models represent the entities in the database and help you to query the database and return the data Views are the pages that will be displayed…
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, breadcrumbs and increase…
Read more »How to login & Registration with Session in laravel.
After successfully install laravel Application, Go to your project .env file and set up database credential and move next step : Next, migrate the table into the database using the…
Read more »55 Steps For build a project in php Laravel Framework.
1.laravel new project (open command prompt on xampp/htdocs directory) 2.cd projectname 4.Customise users table(database/migration/create_users_table.php) 5.Make Model and Migration for Role Table 6.Customise roles table(database/migration/create_roles_table.php) 7.Make Relationship between users and roles…
Read more »How to install Laravel Application & sample CRUD.
Since its initial release in 2011, Laravel has experienced exponential growth. In 2015, it became the most starred PHP framework on GitHub and rose to the go-to framework for people…
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 of the package. NOTE:…
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] Quick Info description…
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 following code How…
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 Select ReCaptcha v2…
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 ‘redirect’ => ‘http://your-callback-url’,…
Read more »How to configure Laravel 5.5 with Bootstrap 4
Bootstrap 3 to bootstrap 4.3.1 upgrade in Laravel 5.5 Note: Laravel 5.5 uses bootstrap 3 by default Steps involved in the upgrade Open gitbash in the home directory of the…
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 PHP projects and…
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 database todolist 5.Create…
Read more »