https://github.com/lemberg/laravel-crud
https://github.com/lemberg/laravel-crud
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lemberg/laravel-crud
- Owner: lemberg
- Created: 2018-05-21T10:33:38.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-29T10:35:29.000Z (about 8 years ago)
- Last Synced: 2025-05-17T17:08:12.180Z (about 1 year ago)
- Language: HTML
- Size: 14.6 KB
- Stars: 0
- Watchers: 11
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lemberg Laravel CRUD package #
## install via composer ##
```composer require lemberg/laravelcrud:dev-master```
add to providers array in ```config/app.php```
```
Collective\Html\HtmlServiceProvider::class,
DaveJamesMiller\Breadcrumbs\ServiceProvider::class,
Lemberg\CRUD\Providers\CRUDServiceProvider::class,
```
add to aliases array in ```config/app.php```
```
'Breadcrumbs' => DaveJamesMiller\Breadcrumbs\Facade::class,
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
```