feat: implement team standby status, helper persistence, and store portal foundations

This commit is contained in:
Developer
2026-07-02 12:02:13 +08:00
parent a9a1df93bd
commit a1470eb85e
32 changed files with 1371 additions and 82 deletions

View File

@@ -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',
];
}