File "ClassTeacher.php"
Full Path: /home/trinadezambia/public_html/admin_panel/app/Models/ClassTeacher.php
File size: 1.85 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\Auth;
use App\Traits\DateFormatTrait;
use App\Services\CachingService;
class ClassTeacher extends Model
{
use HasFactory, DateFormatTrait;
protected $fillable = array(
"class_section_id",
"teacher_id",
"session_year_id",
"school_id",
);
protected $appends = ['class_id'];
protected $hidden = ['created_at','updated_at'];
public function scopeOwner($query)
{
if(Auth::user()) {
if (Auth::user()->hasRole('Super Admin')) {
return $query;
}
if (Auth::user()->hasRole('School Admin') || Auth::user()->hasRole('Teacher')) {
$sessionYearId = app(CachingService::class)->getSessionYear()->id;
return $query->where(['school_id' => Auth::user()->school_id, 'session_year_id' => $sessionYearId]);
}
if (Auth::user()->hasRole('Student')) {
return $query->where('school_id', Auth::user()->school_id);
}
}
return $query;
}
public function class_section() {
return $this->belongsTo(ClassSection::class, 'class_section_id')->withTrashed();
}
public function teacher() {
return $this->belongsTo(User::class, 'teacher_id')->withTrashed();
}
public function getClassIdAttribute(){
if ($this->relationLoaded('class_section')) {
return $this->class_section->class_id;
}
}
public function getCreatedAtAttribute()
{
return $this->formatDateValue($this->getRawOriginal('created_at'));
}
public function getUpdatedAtAttribute()
{
return $this->formatDateValue($this->getRawOriginal('updated_at'));
}
}