initialize project

This commit is contained in:
Afrina Alimi
2024-02-08 09:30:14 +08:00
commit 25d85dac75
206 changed files with 50977 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Nominee extends Model
{
protected $table = 'nominee';
protected $fillable = [
'name',
'course',
'student_id',
'position_id',
'partylist_id',
'election_id',
'image',
'description',
'motto'
];
}