https://github.com/matthv/laravel8-demo-forestadmin
https://github.com/matthv/laravel8-demo-forestadmin
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/matthv/laravel8-demo-forestadmin
- Owner: matthv
- Created: 2021-11-29T16:19:59.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-21T10:41:04.000Z (about 2 years ago)
- Last Synced: 2024-10-19T02:30:12.666Z (7 months ago)
- Language: PHP
- Size: 766 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LARAVEL DEMO FOREST ADMIN

* [Requirements](#Requirements)
* [Configuration](#Configuration)
* [Forest Admin](#Forest-Admin)
* [Serving Laravel](#Serving-Laravel)# Requirements
- php >= 7.4
# Configuration
### composer
update the repositories/url section and add your local forest admin package.
example : */Users/johndoe/.../laravel-forestadmin*```
composer install
```### .env file
```
cp .env.example.com .env
php artisan key:generate
```
set your database connection (DB section)### migrate & seed
```
php artisan migrate && php artisan db:seed
```### Assets
```
npm install && npm run production
```## Forest Admin
Start your onboarding on Forest Admin.
```
composer require forestadmin/laravel-forestadmin
php artisan vendor:publish --provider="ForestAdmin\LaravelForestAdmin\ForestServiceProvider" --tag="config"
php artisan forest:setup-keys YOUR-FOREST-KEY
```## Serving Laravel
```
php artisan serve
```