Skip to content

Build a full-featured administrative interface pannel in 5min

Notifications You must be signed in to change notification settings

chandrakantapanda/Admin-Auth-in-Laravel8

Repository files navigation

Laravel Separate Admin Auth in Laravel 8

This is an example of a creating separate admin panel using auth with Laravel

After clone you can run it

how to achieve follow a few steps

Getting Started

  1. Clone the repository and install composer packages by running:
composer update 
  1. Create .env file from env.example
copy .env.example .env
  1. Generate Application Key for your application.
php artisan key:generate
  1. Run migration for create users table, admins tables :
php artisan migrate --seed
  1. Run your Laravel application
    php artisan serve
  1. Go to http://127.0.0.1:8000/admin/login , login as password:. Awesome GitHub Profile Readme

  2. You will see dashboard page after successful authentication

  3. Now go to http://127.0.0.1:8000/admin/dashboard , this route only accessible if user loggedin