feat: implement team standby status, helper persistence, and store portal foundations
This commit is contained in:
@@ -12,7 +12,7 @@ class StorePurchase extends Model
|
||||
|
||||
protected $fillable = [
|
||||
'store_id', 'batch_id', 'quantity',
|
||||
'wholesale_price_centavos', 'paid_at', 'payment_id',
|
||||
'wholesale_price_centavos', 'paid_at', 'payment_id', 'is_prepaid',
|
||||
];
|
||||
|
||||
protected function casts(): array
|
||||
@@ -21,6 +21,7 @@ class StorePurchase extends Model
|
||||
'paid_at' => 'datetime',
|
||||
'quantity' => 'integer',
|
||||
'wholesale_price_centavos' => 'integer',
|
||||
'is_prepaid' => 'boolean',
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user