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

@@ -26,9 +26,13 @@ class RefundStatement 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'];
const string CREATED_AT = 'create_time';
const string UPDATED_AT = 'update_time';
}