Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/engsahaly/laravel_11_updates_course
Project files for my Laravel 11 updates course on Udemy
https://github.com/engsahaly/laravel_11_updates_course
laravel laravel-framework laravel11 udemy udemy-course udemycourse
Last synced: 3 days ago
JSON representation
Project files for my Laravel 11 updates course on Udemy
- Host: GitHub
- URL: https://github.com/engsahaly/laravel_11_updates_course
- Owner: engsahaly
- Created: 2024-04-23T19:54:00.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-04-27T17:42:35.000Z (7 months ago)
- Last Synced: 2024-04-28T19:28:04.214Z (7 months ago)
- Topics: laravel, laravel-framework, laravel11, udemy, udemy-course, udemycourse
- Language: PHP
- Homepage:
- Size: 82 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Laravel 11 Updates Course Repo
**Created By :** Mahmoud Anwar
**Email :** [email protected]This is the main readme file for the code used in laravel 11 updates course on Udemy
## Installation
To get started, clone this repository.
```
git clone https://github.com/engsahaly/laravel_11_updates_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 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
```