Files
root e13df69885
API CI/CD / Validate (composer + pint) (push) Successful in 3m6s
API CI/CD / Test (PHPUnit) (push) Failing after 4m53s
API CI/CD / Build frontend assets (push) Successful in 1m2s
API CI/CD / Security audit (push) Failing after 59s
API CI/CD / Deploy to shared hosting (PHP) (push) Has been skipped
fix unittests issues
2026-07-07 20:56:32 -04:00

40 lines
1.0 KiB
PHP

<?php
namespace App\Models;
class CompetitionWinner extends BaseModel
{
protected $table = 'competition_winners';
// legacy: useTimestamps = false
public $timestamps = false;
protected $fillable = ['competition_id', 'student_id', 'class_section_id', 'rank', 'score', 'prize_amount', 'created_at'];
protected $casts = [
'competition_id' => 'integer',
'student_id' => 'integer',
'class_section_id' => 'integer',
'rank' => 'integer',
'score' => 'integer', // change to 'decimal:2' if needed
'prize_amount' => 'decimal:2', // adjust precision if needed
'created_at' => 'datetime',
];
/* Optional relationships */
public function competition()
{
return $this->belongsTo(Competition::class, 'competition_id');
}
public function student()
{
return $this->belongsTo(Student::class, 'student_id');
}
public function classSection()
{
return $this->belongsTo(ClassSection::class, 'class_section_id');
}
}