julianobailao / laravel-easy-api
Laravel Easy Api Helper.
Requires
- php: ~5.6|~7.0
Requires (Dev)
- laravel/laravel: dev-develop
- orchestra/testbench: ~3.4||~3.3
- phpunit/phpunit: ~4.0||~5.0
- scrutinizer/ocular: ~1.1
- squizlabs/php_codesniffer: ~2.3
This package is not auto-updated.
Last update: 2024-11-10 02:59:23 UTC
README
This package will helps you build as quickly as possible your APIs, using pre-configured traits and resource controllers, see the wiki for more information.
Install
Via Composer
$ composer require julianobailao/laravel-easy-api
Documentation
Please, see the wiki for the full documentation of this project.
Basic Usage
Create a Model:
Create a model and configure it has you wish.
namespace App; use Illuminate\Database\Eloquent\Model; class Donkey extends Model { // }
Create a controller
Create a controller, and use the ResourceTrait of this package. Exists one trait for each method from resource controller equivalent, if you want use a especific methods, and not all of then, read about Independent Methods.
namespace App\Http\Controllers; use JulianoBailao\LaravelEasyApi\ResourceTrait; class DonkeyController extends Controller { use ResourceTrait; }
Route
Configure your route like a resource controller:
Route::resource('donkeys', 'DonkeyController', ['except' => ['create', 'edit']]);
It's runing!
You have a resource controller with the index, show, store, update and destroy methods, runing for model Donkey, in the /donkeys route.
Please, see the wiki for the full documentation of this project.
License
The MIT License (MIT). Please see License File for more information.
Donate
Support this project and others, via PayPal.