baytek / laravel-statusbit
Model Status Bits
Installs: 146
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/baytek/laravel-statusbit
Requires
- php: >=5.6.4
This package is auto-updated.
Last update: 2025-10-04 21:21:03 UTC
README
Installation
Composer
Add this to your composer.json file, in the require object:
"baytek/laravel-statusbit": "dev-master"
After that, run composer install to install the package.
Configuration
Model Setup
Next, add the StatusBit
trait to each of your statusable model definition:
use Baytek\Laravel\StatusBit\Statusable; class Post extends Eloquent { use Statusable; }