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
- Host: GitHub
- URL: https://github.com/chandrakantapanda/admin-auth-in-laravel8
- Owner: chandrakantapanda
- Created: 2023-09-07T12:14:53.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-09-10T14:32:14.000Z (about 2 years ago)
- Last Synced: 2025-02-03T09:47:42.597Z (10 months ago)
- Topics: admin-auth-in-laravel8, laravel-admin, laravel-admin-panel, separate-admin-dashboardlaravel8
- Language: PHP
- Homepage:
- Size: 1.29 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:.
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