bisual / laravel-shortcuts
Laravel Shortcuts for Software Agencies
Installs: 4 638
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 3
Requires
- php: ^8.1
- illuminate/contracts: ^12.0 | ^11.0 | ^10.0 | ^9.0
- ramsey/uuid: ^4.0
- spatie/laravel-package-tools: ^1.14.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^8.0
- spatie/laravel-ray: ^1.26
- dev-main
- v1.0.2
- v1.0.1
- v1.0.0
- v0.4.0
- v0.3.1
- v0.3.0
- v0.2.13
- v0.2.12
- v0.2.11
- v0.2.10
- v0.2.9
- v0.2.8
- v0.2.7
- v0.2.6
- v0.2.5
- v0.2.4
- v0.2.3
- v0.2.2
- v0.2.1
- v0.2.0
- v0.1.1
- v0.1.0
- v0.0.30
- v0.0.29
- v0.0.28
- v0.0.27
- v0.0.26
- v0.0.25
- v0.0.24
- v0.0.23
- v0.0.22
- v0.0.21
- v0.0.20
- v0.0.19
- v0.0.18
- v0.0.17
- v0.0.16
- v0.0.15
- v0.0.14
- v0.0.13
- v0.0.12
- v0.0.11
- v0.0.10
- v0.0.9
- v0.0.8
- v0.0.7
- v0.0.6
- v0.0.5
- v0.0.4
- v0.0.3
- v0.0.2
- v0.0.1
- dev-FEAT-queryParserRefactor
- dev-FEAT-storeRequestClass
- dev-FEAT-attrs
- dev-dependabot/github_actions/stefanzweifel/git-auto-commit-action-5
- dev-dependabot/github_actions/actions/checkout-4
- dev-dependabot/github_actions/aglipanci/laravel-pint-action-2.3.0
This package is auto-updated.
Last update: 2025-03-25 18:37:16 UTC
README
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
Installation
You can install the package via composer:
composer require bisual/laravel-shortcuts
You can publish and run the migrations with:
php artisan vendor:publish --tag="laravel-shortcuts-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="laravel-shortcuts-config"
This is the contents of the published config file:
return [
];
Optionally, you can publish the views using
php artisan vendor:publish --tag="laravel-shortcuts-views"
Custom query params usage
You can build different formats of query params to handle sort, select and with in different depths of your query.
-- WITH --
To indicate depth within your query param 'with' you should use this format.
?with=relation..relation2..relation3
The '..' character indicates one level deeper.
-- ORDER BY --
You can simply indicate the field to order by entering it in your query as you have done all your life.
?order_by=created_at
But you can also choose which fields of your relations to order and in which depth to do it, as well as indicate 'order_by_direction' in the same string.
?order_by=relation..relation2..relation3.created_at:desc
If you do not indicate your 'order_by_direction' with ':' next to the field to sort by, it will sort in 'asc' direction by default.
-- SELECT --
You can indicate a single field of your main table to get only that information (you don't need to add the id).
?select=name
And once again, you can choose what information about your relationship you receive at the same time. Different fields of the same relationship level will be separated by '|'.
?select=relation..relation2..relation3.name|description
⚙️ Generalities
In all cases, to separate different relationships, regardless of the depth level, they must be separated by a ','.
?with=users,relation..relation2 ?order_by=users.name,relation..relation2.created_at:desc ?select=users.name,relation..relation2.title|description|created_at
NOTE: The query param 'order_by_direction' is not necessary when using laravel-shortcuts since it is applied directly in 'order_by', using it could cause errors.
Changelog
Please see CHANGELOG for more information on what has changed recently.
License
The MIT License (MIT). Please see License File for more information.