feat: implement team standby status, helper persistence, and store portal foundations
This commit is contained in:
@@ -10,12 +10,13 @@ class StoreInventory extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = ['store_id', 'current_code_balance', 'last_updated_at'];
|
||||
protected $fillable = ['store_id', 'current_code_balance', 'prepaid_balance', 'last_updated_at'];
|
||||
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'current_code_balance' => 'integer',
|
||||
'prepaid_balance' => 'integer',
|
||||
'last_updated_at' => 'datetime',
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user