An open API service indexing awesome lists of open source software.

https://github.com/chandrakantapanda/admin-auth-in-laravel8

Build a full-featured administrative interface pannel in 5min
https://github.com/chandrakantapanda/admin-auth-in-laravel8

admin-auth-in-laravel8 laravel-admin laravel-admin-panel separate-admin-dashboardlaravel8

Last synced: 9 months ago
JSON representation

Build a full-featured administrative interface pannel in 5min

Awesome Lists containing this project

README

          

# 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:
```bash
composer update
```
2. Create .env file from env.example
```bash
copy .env.example .env
```
4. Generate Application Key for your application.
```bash
php artisan key:generate
```
5. Run migration for create users table, admins tables :
```bash
php artisan migrate --seed
```
6. Run your Laravel application
```bash
php artisan serve
```
7. Go to http://127.0.0.1:8000/admin/login , login as password:.
Awesome GitHub Profile Readme

8. You will see dashboard page after successful authentication
9. Now go to http://127.0.0.1:8000/admin/dashboard , this route only accessible if user loggedin