https://github.com/engsahaly/laravel_course_level_1
Project files for my Laravel For Absolute Beginners course on Udemy - Fundamentals
https://github.com/engsahaly/laravel_course_level_1
laravel laravel-framework laravel10 udemy-course udemy-course-project udemy-tutorial
Last synced: about 2 months ago
JSON representation
Project files for my Laravel For Absolute Beginners course on Udemy - Fundamentals
- Host: GitHub
- URL: https://github.com/engsahaly/laravel_course_level_1
- Owner: engsahaly
- Created: 2023-11-30T14:09:54.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-10T17:00:18.000Z (over 1 year ago)
- Last Synced: 2025-04-13T03:18:02.015Z (6 months ago)
- Topics: laravel, laravel-framework, laravel10, udemy-course, udemy-course-project, udemy-tutorial
- Language: Blade
- Homepage: https://www.udemy.com/course/laravel-for-absolute-beginners/?referralCode=E4D9FDD77E498F158BC9
- Size: 5.28 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Laravel For Absolute Beginners Course Files on Udemy (FUNDAMENTALS)
**Created By :** Mahmoud Anwar
**Email :** Engsahaly@gmail.comThis is the main readme file for the code used in laravel for absolute beginners course on Udemy (Level 1)
## Installation
To get started, clone this repository.
```
git clone https://github.com/engsahaly/laravel_course_level_1.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
```