| Current Path : /var/www/html/LLCF-APP/app/Models/ |
| Current File : /var/www/html/LLCF-APP/app/Models/Attendance.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class Attendance extends Model
{
protected $table = 'attendance';
public $timestamps = false;
const CREATED_AT = 'created_on';
const UPDATED_AT = 'updated_on';
protected $fillable = [
'student_id',
'class',
'date',
'attendance',
'created_on',
'updated_on',
];
public function student(): BelongsTo
{
return $this->belongsTo(Student::class);
}
}