https://github.com/engsahaly/laravel_verification_course
Laravel Verification techniques Course on Udemy
https://github.com/engsahaly/laravel_verification_course
laravel laravel-framework laravel-package verification verification-code verification-methodologies
Last synced: about 1 year ago
JSON representation
Laravel Verification techniques Course on Udemy
- Host: GitHub
- URL: https://github.com/engsahaly/laravel_verification_course
- Owner: engsahaly
- Created: 2023-09-27T04:21:18.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-01-29T07:28:41.000Z (over 1 year ago)
- Last Synced: 2025-04-22T23:50:04.078Z (about 1 year ago)
- Topics: laravel, laravel-framework, laravel-package, verification, verification-code, verification-methodologies
- Language: Blade
- Homepage: https://www.udemy.com/course/laravel-verification-techniques/?referralCode=53944E78010205CC1AC0
- Size: 3.73 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Laravel Verification Techniques Course Files

**Created By :** Mahmoud Anwar
**Email :** Engsahaly@gmail.com
This is the main readme file for the project used in laravel verification techniques course on Udemy
## Installation
To get started, clone this repository.
```
git clone https://github.com/engsahaly/laravel_verification_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
You have to run all the migration files included with the project and also run seeders as below.
```
php artisan migrate
```