'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'); } }