spatie/laravel-model-states
Add robust state behavior to Laravel Eloquent models using the state pattern and state machines. Represent each state as a class, cast states transparently to/from the database, and define clear, safe transitions with configurable state logic.
Every model using the HasStates trait will have these scopes available:
whereState($column, $states) and orWhereState($column, $states)whereNotState($column, $states) and orWhereNotState($column, $states)$payments = Payment::whereState('state', Paid::class);
$payments = Payment::whereState('state', [Pending::class, Paid::class]);
$payments = Payment::whereState('state', Pending::class)->orWhereState('state', Paid::class);
$payments = Payment::whereNotState('state', Pending::class);
$payments = Payment::whereNotState('state', [Failed::class, Canceled::class]);
$payments = Payment::whereNotState('state', Failed::class)->orWhereNotState('state', Canceled::class);
When the state field has another column name in the query (for example due to a join), it is possible to use the full column name:
$payments = Payment::whereState('payments.state', Paid::class);
$payments = Payment::whereNotState('payments.state', Pending::class);
How can I help you explore Laravel packages today?