nemesis/laravel-rest

There is no license information available for the latest version (3.0.1) of this package.

REST actions for controllers

3.0.1 2019-03-04 18:43 UTC

This package is not auto-updated.

Last update: 2024-04-23 19:44:35 UTC


README

Package included CRUD action traits, service trait, ApiController and transformer

How to install:

composer require nemesis/laravel-rest

or add in composer.json record to require block require:

For Laravel >=5.3
```json
"nemesis/laravel-rest": "*"

Using

Extend You controllers from Nemesis\LaravelRest\Controllers\ApiController and use action traits for him/

In Nemesis\LaravelRest\Traits\Actions* isset CRUD operations for controller

You need to set $modelClass variable in controller and using action traits

    class SomeController
    {
        use IndexAction, ShowAction, StoreAction, UpdateAction, DestroyAction;
    
        protected $modelClass = SomeModel::class;    
    }

If any of the methods that do not need it, just remove it

If you need all action, use GeneralActions

baseQueryFilter

if you need filtering data by default conditions, use baseQueryFilter method on you controller:

    public function baseQueryFilter($query)
    {
        return $query->where('owner', Auth::user()->id);
    }

default paginate

ItemService trait have static variable $defaultPaginate. You will change it in your controllers

Filter using

Package include filter.