coleus / health
Installs: 51
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/coleus/health
Requires
- php: ^8.4
- coleus/support: ^1.0
- coleus/table: ^1.0
- coleus/users: ^1.0
- illuminate/console: ^10.45|^11.0|^12.0
- illuminate/contracts: ^10.45|^11.0|^12.0
- illuminate/database: ^10.45|^11.0|^12.0
- illuminate/filesystem: ^10.45|^11.0|^12.0
- illuminate/support: ^10.45|^11.0|^12.0
- illuminate/validation: ^10.45|^11.0|^12.0
- illuminate/view: ^10.45|^11.0|^12.0
- inertiajs/inertia-laravel: ^2.0
- spatie/laravel-data: ^4.17
- spatie/laravel-package-tools: ^1.9
- tightenco/ziggy: ^v2.5
This package is auto-updated.
Last update: 2025-11-02 23:09:06 UTC
README
How to use
Using facade
use Coleus\Health\Facades\Health; Health::category()->index(); Health::category()->store($data); Health::category()->update($category, $data); Health::category()->destroy($category); Health::muscleGroup()->index(); Health::muscleGroup()->store($data); Health::muscleGroup()->update($muscleGroup, $data); Health::muscleGroup()->destroy($muscleGroup); Health::exercise()->index(); Health::exercise()->store($data, $categories, $muscleGroups); Health::exercise()->update($exercise, $data, $categories, $muscleGroups); Health::exercise()->destroy($exercise); Health::weight()->index(); Health::weight()->store($data); Health::weight()->update($weight, $data); Health::weight()->destroy($weight);