feat : rank

This commit is contained in:
2025-04-09 14:47:51 +08:00
parent 96cad2a73a
commit ec1d01751e
10 changed files with 454 additions and 10 deletions

View File

@@ -30,9 +30,13 @@ class ChefStatement extends Model
* The attributes that are mass assignable.
*/
protected array $fillable = [];
protected array $guarded = [];
/**
* The attributes that should be cast to native types.
*/
protected array $casts = ['id' => 'integer', 'cycle_id' => 'integer', 'kitchen_id' => 'integer', 'chef_id' => 'integer', 'sku_id' => 'integer', 'sale' => 'integer', 'refund' => 'integer', 'cancel' => 'integer'];
const string CREATED_AT = 'create_time';
const string UPDATED_AT = 'updated_time';
}