https://github.com/engsahaly/laravel_jetstream_course
Project files for my Laravel Jetstream & Fortify - The Complete Guide course on Udemy
https://github.com/engsahaly/laravel_jetstream_course
authentication authorization fortify jetstream jetstream-laravel laravel mail
Last synced: about 2 months ago
JSON representation
Project files for my Laravel Jetstream & Fortify - The Complete Guide course on Udemy
- Host: GitHub
- URL: https://github.com/engsahaly/laravel_jetstream_course
- Owner: engsahaly
- Created: 2023-05-13T19:34:49.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2025-01-29T07:28:55.000Z (over 1 year ago)
- Last Synced: 2025-07-31T13:26:15.330Z (11 months ago)
- Topics: authentication, authorization, fortify, jetstream, jetstream-laravel, laravel, mail
- Language: PHP
- Homepage: https://www.udemy.com/course/laravel-jetstream-fortify-the-complete-guide-arabic/?referralCode=37FEC596B0C33451B73C
- Size: 197 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Laravel Jetstream & Fortify - The Complete Guide (Course Files)

**Created By :** Mahmoud Anwar
**Email :** Engsahaly@gmail.com
This is the main readme file for the project used in Laravel Jetstream & Fortify course on Udemy
## Installation
To get started, clone this repository.
```
git clone https://github.com/engsahaly/laravel_jetstream_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 website
You can access main default page using this url.
```
http://localhost:8000/
```