alex-oliveira/ao-scrud

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

Installs: 277

Dependents: 4

Suggesters: 0

Security: 0

Stars: 3

Watchers: 3

Forks: 1

Open Issues: 0

Type:package

pkg:composer/alex-oliveira/ao-scrud

1.0.2 2016-12-01 14:04 UTC

This package is auto-updated.

Last update: 2025-09-26 01:54:06 UTC


README

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.