Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yanuarprayoga9/laravel-playground
https://github.com/yanuarprayoga9/laravel-playground
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/yanuarprayoga9/laravel-playground
- Owner: Yanuarprayoga9
- Created: 2024-07-10T06:59:22.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-14T00:23:13.000Z (6 months ago)
- Last Synced: 2024-07-14T01:28:35.909Z (6 months ago)
- Language: PHP
- Size: 98.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Instal
cloning repository
```sh
git clone https://github.com/Yanuarprayoga9/laravel-playground.git```
depedency
```sh
npm i
```
## Database Configurationchange database name
```sh
DB_CONNECTION=mysql
# DB_HOST=127.0.0.1
# DB_PORT=3306
# DB_DATABASE=pbdfweek2
# DB_USERNAME=root
# DB_PASSWORD=```
migrate database (you must be create a database first)
```sh
php artisan migrate
# or refresh
php artisan migrate:fresh
```
seeding database
```sh
php artisan db:seed
```