snowfingers / query-helper
There is no license information available for the latest version (dev-main) of this package.
Query helper for faster development
dev-main
2024-04-19 01:20 UTC
Requires
- php: >=7.0
- laravel/framework: >=8.75
This package is not auto-updated.
Last update: 2025-05-30 21:59:30 UTC
README
Laravel query helper
This package will short your code and decrease the number of queries as Laravel Developer
How to install in Laravel project?
composer require snowfingers/query-helper
How to use?
This is very simple use in your existing project to improve development level.
First import the class using Laravel sytem
use QueryHelper\QueryHelper;
Now in your controller function
QueryHelper::leftJoin(ModelQueryVariable, ChildClass::class);