add projet
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class CompetitionWinner extends Model
|
||||
{
|
||||
protected $table = 'competition_winners';
|
||||
protected $fillable = [
|
||||
'competition_id',
|
||||
'student_id',
|
||||
'class_section_id',
|
||||
'rank',
|
||||
'score',
|
||||
'prize_amount',
|
||||
'created_at',
|
||||
];
|
||||
public $timestamps = false;
|
||||
}
|
||||
Reference in New Issue
Block a user