owowagency / laravel-resources
A package to develop projects faster.
Installs: 11 493
Dependents: 2
Suggesters: 0
Security: 0
Stars: 11
Watchers: 3
Forks: 2
Open Issues: 4
Requires
- dees040/laravel-api-responses: ^0.3
- illuminate/support: ^10.0
- laravel/pint: ^1.10
Requires (Dev)
- mockery/mockery: ^1.1
- orchestra/testbench: ^6.2|^8.0
- owowagency/phpunit-snapshot-assertions: ^0.0.8
- phpunit/phpunit: ~8.0|~9.0
- sempro/phpunit-pretty-print: ^1.0
- spatie/phpunit-snapshot-assertions: ^4.2
- dev-master
- v3.2.3
- v3.2.2
- v3.2.1
- 3.2.0
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.1
- 3.0.0
- 2.x-dev
- 2.4.4
- 2.4.3
- 2.4.2
- 2.4.1
- 2.4.0
- 2.3.3
- 2.3.2
- 2.3.1
- 2.3.0
- 2.2.2
- 2.2.1
- 2.2.0
- 2.1.4
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.0
- 1.2.9
- 1.2.8
- 1.2.7
- 1.2.6
- 1.2.5
- 1.2.4
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.1
- 1.1.0
- 1.0.1
- 1.0.0
- dev-dependabot/add-v2-config-file
- dev-dependabot/composer/phpunit/phpunit-approx-9.5
This package is auto-updated.
Last update: 2024-10-18 14:02:51 UTC
README
Sick and tired of having to create the same controller over and over?
Look no further! OWOW presents "Laravel Resources".
A package that makes creating API endpoints feel like breeze.
๐ Table of contents
โ๏ธ Installation
composer require owowagency/laravel-resources
๐ Usage
This package adds a few new features to the already existing apiResource
method, model
and requests
.
model
will be used to determine what model is being be handled.
requests
should contain the form requests that are used to validate incoming data during creation and updating.
Route registration
use App\Http\Requests\Posts\StoreRequest; use App\Http\Requests\Posts\UpdateRequest; use App\Models\Post; use OwowAgency\LaravelResources\Controllers\ResourceController; Route:apiResource( 'posts', ResourceController::class, [ 'model' => Post::class, 'requests' => [ 'store' => StoreRequest::class, 'update' => UpdateRequest::class, ], ], );
Customizing controllers
All methods in the ResourceController
can be overwritten. We made it a little easier by adding methods like indexModel
, and updateModel
. You will not have to worry about validating, authorization, or returning the models as response.
use OwowAgency\LaravelResources\Controllers\ResourceController; class PostController extends ResourceController { /** * Returns models instances used for the index action. * * @return mixed */ public function indexModel() { return Post::where('title', 'LIKE', request('search'))->paginate(); } /** * Updates and returns the model instance for the update action. * * @param \Illuminate\Http\Request $request * @param \Illuminate\Database\Eloquent\Model $model * @return void */ public function updateModel(Request $request, Model $model) { $model->update(['user_id' => \Auth::user()->id]); } }
Eloquent API resources
This package will always try to return the API resource representation of the specified model. It applies auto discovery to determine what resource to use.
By default it will use the following pattern to discover the resource class:
App\Http\Resources\{class_baseName($modelClass)}Resource
In case of a Post
model that will become:
App\Http\Resources\PostResource
Configuration
Configuration can be published with:
php artisan vendor:publish --tag=laravelresources
return [ /** * Is used for auto discovery of http resources. Allows for placing * resources under a different namespace. */ 'resource_namespace' => 'App\\Http\\Resources', /** * Configure resources that do not follow the default auto discovery rules. * * Eg: * [Post::class => SpecialPostResource::class] */ 'resource_factory' => [], ];
๐ซถ Contributing
Please see CONTRIBUTING for details.
๐ License
The MIT License (MIT). Please see License File for more information.
This package has been brought to you with much love by the wizkids of OWOW. Do you like this package? Weโre still looking for new talent and Wizkids. So do you want to contribute to open source, while getting paid? Apply now