changeweb/Unifiedtransform

View on GitHub
app/Models/Exam.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Models;

use App\Models\Course;
use App\Models\Semester;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;

class Exam extends Model
{
    use HasFactory;

    protected $fillable = [
        'exam_name',
        'start_date',
        'end_date',
        'semester_id',
        'class_id',
        'course_id',
        'session_id'
    ];

    /**
     * Get the course.
     */
    public function course() {
        return $this->belongsTo(Course::class, 'course_id');
    }

    /**
     * Get the semester.
     */
    public function semester() {
        return $this->belongsTo(Semester::class, 'semester_id');
    }
}