julianobailao / laravel-easy-api by JUB4

Laravel Easy Api Helper.
65
13
1
Package Data
Maintainer Username: JUB4
Maintainer Contact: julianobailao@gmail.com (Juliano Bailão)
Package Create Date: 2017-01-29
Package Last Update: 2017-02-01
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-25 03:00:45
Package Statistics
Total Downloads: 65
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 13
Total Watchers: 1
Total Forks: 2
Total Open Issues: 0

Laravel - Easy Api

Latest Version on Packagist Software License Build Status StyleCI Coverage Status Quality Score Total Downloads Donate

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.

Donate