D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
school.dentostock.com
/
app
/
Filename :
SmClassSection.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 SmClassSection extends Model { use HasFactory; protected static function boot() { parent::boot(); static::addGlobalScope(new GlobalAcademicScope); // static::addGlobalScope(new StatusAcademicSchoolScope); } public function className() { return $this->belongsTo('App\SmClass', 'class_id', 'id')->withDefault(); } public function sectionName() { return $this->belongsTo('App\SmSection', 'section_id', 'id')->withDefault(); } public function sectionNameSaas() { return $this->belongsTo('App\SmSection', 'section_id', 'id')->withoutGlobalScope(StatusAcademicSchoolScope::class)->withDefault(); } public function globalSectionName() { return $this->belongsTo('App\SmSection', 'section_id', 'id')->withoutGlobalScope(GlobalAcademicScope::class)->withoutGlobalScope(StatusAcademicSchoolScope::class)->withDefault(); } public function globalClassName() { return $this->belongsTo('App\SmClass', 'class_id', 'id')->withoutGlobalScope(GlobalAcademicScope::class)->withoutGlobalScope(StatusAcademicSchoolScope::class)->withDefault(); } public function students() { return $this->hasMany('App\SmStudent', 'section_id', 'section_id'); } public function sectionWithoutGlobal() { return $this->belongsTo('App\SmSection', 'section_id', 'id')->withoutGlobalScopes()->withDefault(); } }