library laracrud
crud controller for Laravel 4
whitegolem/laracrud
crud controller for Laravel 4
- Monday, December 29, 2014
- by whitegolem
- Repository
- 0 Watchers
- 0 Stars
- 8 Installations
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
laracrud
crud controller helper for laravel 4, (*1)
1 - open config/app.php and add the service provider for this package in the $providers array, (*2)
'Whitegolem\LaraCrud\CrudServiceProvider'
2 - edit BaseController.php:, (*3)
<?php
use Whitegolem\LaraCrud\Routing\Controllers\CrudController;
class BaseController extends CrudController {
...
...
...
3 - make a BaseModel and inherit from Crud.php:, (*4)
<?php
use Whitegolem\LaraCrud\Database\Eloquent\Crud;
class Base extends Crud {
}
dev-master
9999999-dev
crud controller for Laravel 4
Sources
Download
GPLv2
The Requires
by
Francesco Delacqua