https://github.com/engsahaly/authentiation_and_authorization_course
Project files for Multi authentication & authorization course on Udemy
https://github.com/engsahaly/authentiation_and_authorization_course
authentication authorization breeze laravel laravel-framework multi spatie-laravel-permission
Last synced: 6 days ago
JSON representation
Project files for Multi authentication & authorization course on Udemy
- Host: GitHub
- URL: https://github.com/engsahaly/authentiation_and_authorization_course
- Owner: engsahaly
- Created: 2023-04-02T15:34:01.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-01-29T07:26:29.000Z (3 months ago)
- Last Synced: 2025-04-02T09:38:56.192Z (27 days ago)
- Topics: authentication, authorization, breeze, laravel, laravel-framework, multi, spatie-laravel-permission
- Language: Blade
- Homepage: https://www.udemy.com/course/laravel-multi-authentication-and-authorization-in-depth/?referralCode=04254DC0B4DC835F39A4
- Size: 3.87 MB
- Stars: 10
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Multi Authentication and Authorization Course Files
**Created By :** Mahmoud Anwar
**Email :** [email protected]This is the main readme file for the project used in multi authentication and authorization course on Udemy
This dashboard includes a lot of features already installed and created as below :
You can find the course in this link .
```
https://github.com/engsahaly/Authentiation_and_authorization_course.git
```## Installation
To get started, clone this repository.
```
git clone https://github.com/engsahaly/Authentiation_and_authorization_course.git
```Next, copy your `.env.example` file as `.env` and configure your Database connection.
```
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=YOUR-DATABASE-NAME
DB_USERNAME=YOUR-DATABASE-USERNAME
DB_PASSWORD=YOUR-DATABASE-PASSWROD
```## Run Packages and helpers
You have to all used packages and load helpers as below.
```
composer install
npm install
npm run dev
npm run build
```## Generate new application key
You have to generate new application key as below.
```
php artisan key:generate
```## Run Migrations and Seeders
You have to run all the migration files included with the project and also run seeders as below.
```
php artisan migrate
php artisan db:seed
```## Accessing Admin Panel
You can access admin login page using this url.
```
http://localhost:8000/back/login
```