Resources for a Super C.R.U.D. with Laravel.
257
3
4
Package Data
Maintainer Username: alex-oliveira
Package Create Date: 2015-10-12
Package Last Update: 2017-11-30
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 03:00:16
Package Statistics
Total Downloads: 257
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 3
Total Watchers: 4
Total Forks: 1
Total Open Issues: 0

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.