Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/engsahaly/livewire-project-course
Livewire project course file
https://github.com/engsahaly/livewire-project-course
laravel laravel-framework laravel-package livewire livewire-components livewire-examples livewire-modal
Last synced: 4 days ago
JSON representation
Livewire project course file
- Host: GitHub
- URL: https://github.com/engsahaly/livewire-project-course
- Owner: engsahaly
- Created: 2023-08-29T04:19:40.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-21T20:34:00.000Z (about 1 year ago)
- Last Synced: 2024-11-10T04:37:18.260Z (2 months ago)
- Topics: laravel, laravel-framework, laravel-package, livewire, livewire-components, livewire-examples, livewire-modal
- Language: JavaScript
- Homepage: https://www.udemy.com/course/the-complete-livewire-course-from-zero-to-hero/?referralCode=9A29FA0B8B4F1A538640
- Size: 4.22 MB
- Stars: 5
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Livewire Course Files - Project Phase
**Created By :** Mahmoud Anwar
**Email :** [email protected]This is the main readme file for the project files (Project) used in Livewire course on Udemy
## Installation
To get started, clone this repository.
```
git clone https://github.com/engsahaly/livewire-project-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
```