D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
kader-lms.com
/
app
/
Filename :
SmExamType.php
back
Copy
<?php namespace App; use App\Scopes\GlobalAcademicScope; use Illuminate\Database\Eloquent\Model; use App\Scopes\StatusAcademicSchoolScope; use Illuminate\Database\Eloquent\Factories\HasFactory; class SmExamType extends Model { use HasFactory; protected $fillable = ['percentage']; protected $casts = [ 'id' => 'integer', 'title' => 'string', ]; protected static function boot(){ parent::boot(); static::addGlobalScope(new StatusAcademicSchoolScope); static::addGlobalScope(new GlobalAcademicScope); } public static function examType($assinged_exam_type) { try { return SmExamType::withOutGlobalScopes()->where('id', $assinged_exam_type)->first(); } catch (\Exception $e) { return null; } } public function getScheduleSubject() { return $this->belongsTo(SmExamSchedule::class, 'exam_period_id'); } public function examSetups() { return $this->hasMany(SmExamSetup::class, 'exam_term_id'); } public function examsSetup() { return $this->hasMany(SmExamSetup::class, 'exam_term_id'); } public function examTerm() { return $this->belongsTo(CustomResultSetting::class, 'id', 'exam_type_id'); } public function examSettings() { return $this->belongsTo(SmExamSetting::class, 'id','exam_type'); } }