LaravelPackages.net
Acme Inc.
Toggle sidebar
alex-oliveira/ao-scrud

Resources for a Super C.R.U.D. with Laravel.

337
3
1.0.2
About alex-oliveira/ao-scrud

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

Installation

1) Install

$ composer require alex-oliveira/ao-scrud

2) Configure "config/app.php" file

'providers' => [
    /*
     * Vendor Service Providers...
     */
    AoScrud\ServiceProvider::class,
],

3) Configure "app/Exceptions/Handler.php" file

class Handler extends ExceptionHandler
{
    use \AoScrud\Core\ScrudHandler;
    .
    .
    .
    public function render($request, Exception $exception)
    {
        return $this->scrudRender($request, $exception);
    }
    .
    .
    .
}

Utilization

Discover all in the wiki.

Comments