Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/engsahaly/laravel_course_level_2_starter_repo

Project files for my Laravel For Absolute Beginners - Level 2 course on Udemy - Starter repo
https://github.com/engsahaly/laravel_course_level_2_starter_repo

laravel laravel-framework laravel10 udemy udemy-course udemy-tutorial

Last synced: 6 days ago
JSON representation

Project files for my Laravel For Absolute Beginners - Level 2 course on Udemy - Starter repo

Awesome Lists containing this project

README

        

## Laravel For Absolute Beginners Course Level 2 Starter Repo

**Created By :** Mahmoud Anwar
**Email :** [email protected]

This is the main readme file for the starter code used in laravel for absolute beginners course on Udemy (Level 2)

## Installation

To get started, clone this repository.

```
git clone https://github.com/engsahaly/laravel_course_level_2_starter_repo.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 build
```

## Generate new application key

You have to generate new application key as below.

```
php artisan key:generate
```

## Run Migrations

You have to run all the migration files included with the project and also run seeders as below.

```
php artisan migrate
```