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

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

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/
```