| Install | |
|---|---|
composer require rafflesargentina/l5-resource-controller |
|
| License: | MIT |
| Last Updated: | Feb 10, 2019 |
| Links: | GitHub · Packagist |
Resource Controller for Laravel 5
Via Composer
$ composer require rafflesargentina/l5-resource-controller
Create a controller like you normally would and change it to extend ResourceController class. Then set $repository an $resourceName properties:
Also you can set these optional properties:
Example:
<?php
namespace App\Http\Controllers;
use RafflesArgentina\ResourceController\ResourceController;
use App\Http\Requests\ArticleRequest;
use App\Repositories\ArticleRepository;
class ArticlesController extends ResourceController
{
protected $repository = ArticleRepository::class;
protected $formRequest = ArticleRequest::class;
protected $resourceName = 'articles';
}
And that's it :)
Please see CONTRIBUTING and CONDUCT for details.
If you discover any security related issues, please email mario@raffles.com.ar instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.