alex-oliveira/ao-scrud is a Laravel package for resources for a super c.r.u.d. with laravel..
It currently has 3 GitHub stars and 337 downloads on Packagist (latest version 1.0.2).
Install it with composer require alex-oliveira/ao-scrud.
Discover more Laravel packages by alex-oliveira
or browse all Laravel packages to compare alternatives.
Last updated
$ composer require alex-oliveira/ao-scrud
'providers' => [
/*
* Vendor Service Providers...
*/
AoScrud\ServiceProvider::class,
],
class Handler extends ExceptionHandler
{
use \AoScrud\Core\ScrudHandler;
.
.
.
public function render($request, Exception $exception)
{
return $this->scrudRender($request, $exception);
}
.
.
.
}
Discover all in the wiki.