https://github.com/freshbitsweb/laratables-demo-one-to-many
Laratables package - One to Many relationship version demo
https://github.com/freshbitsweb/laratables-demo-one-to-many
Last synced: about 2 months ago
JSON representation
Laratables package - One to Many relationship version demo
- Host: GitHub
- URL: https://github.com/freshbitsweb/laratables-demo-one-to-many
- Owner: freshbitsweb
- Created: 2019-11-29T11:25:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-02T09:00:04.000Z (about 2 years ago)
- Last Synced: 2025-01-21T00:51:22.806Z (3 months ago)
- Language: PHP
- Size: 281 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Demo of Laratables
This repo contains the code for the demo of [Laratables](https://github.com/freshbitsweb/laratables) package.
# Installation
You can also download and run this app locally.
1) Clone the repo:
```
git clone https://github.com/freshbitsweb/laratables-demo-one-to-many.git [DIRECTORY_NAME]
```2) Create `.env` file from the example file:
```
php -r "file_exists('.env') || copy('.env.example', '.env');"
```3) Setup .env variables (Mainly APP_URL and DB_DATABASE)
4) Run following commands:
```
composer install
php artisan key:generate
php artisan migrate --seed
```Done.