https://github.com/engsahaly/laravel_course_level_1_project
Project files for my Laravel For Absolute Beginners course on Udemy - Project
https://github.com/engsahaly/laravel_course_level_1_project
laravel laravel-framework laravel10 udemy udemy-course udemy-course-project udemy-tutorial
Last synced: 6 months ago
JSON representation
Project files for my Laravel For Absolute Beginners course on Udemy - Project
- Host: GitHub
- URL: https://github.com/engsahaly/laravel_course_level_1_project
- Owner: engsahaly
- Created: 2024-01-01T21:35:45.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-10T17:00:09.000Z (over 1 year ago)
- Last Synced: 2025-03-29T20:11:14.899Z (6 months ago)
- Topics: laravel, laravel-framework, laravel10, udemy, udemy-course, udemy-course-project, udemy-tutorial
- Language: PHP
- Homepage: https://www.udemy.com/course/laravel-for-absolute-beginners/?referralCode=E4D9FDD77E498F158BC9
- Size: 18.8 MB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Laravel For Absolute Beginners Course Files on Udemy (PROJECT)
**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 - Project)
## Installation
To get started, clone this repository.
```
git clone https://github.com/engsahaly/laravel_course_level_1_project.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
```