xclydes / larva
A library to aid in the quickly developing CRUD functionality within a Larvel 5 applicaiton.
v1.0.0
2018-01-12 06:18 UTC
Requires
- php: >=5.5.0
- doctrine/dbal: ^2.5
- illuminate/support: 5.*@dev
- kris/laravel-form-builder: ^1.6
- laravel/framework: ^5.0
- laravelcollective/html: 5.*
- view-components/eloquent-data-processing: ^1.2
- view-components/grids: ^0.5.9
This package is auto-updated.
Last update: 2025-03-10 13:35:43 UTC
README
A ORM to form implementation designed for laravel.
In order to include this package using composer, you will need to do the following:-
-
Modify you composer.json file to include:-
"repositories": [ { "type":"vcs", "url": "https://github.com/xclydes/larva" } ]
-
Add a require (or require-dev) property:
"xclydes/larva" : "dev-master"
Once complete you can run composer update
to have the package imported.
Add a custom provider in the app config
Xclydes\Larva\LarvaServiceProvider::class,
After import run vendor:publish
to have the resources deployed.