Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
admin_panel
/
app
/
Models
:
AnnouncementClass.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Facades\Auth; use App\Traits\DateFormatTrait; class AnnouncementClass extends Model { use HasFactory, DateFormatTrait; protected $fillable = ['announcement_id', 'class_section_id', 'school_id', 'class_subject_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')) { return $query->where('school_id', Auth::user()->school_id); } if (Auth::user()->hasRole('Teacher')) { return $query->where('school_id', Auth::user()->school_id); } 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)->withTrashed(); } public function class_subject() { return $this->belongsTo(ClassSubject::class); } /** * Get all of the subject_teacher for the Assignment * * @return \Illuminate\Database\Eloquent\Relations\belongsTo */ public function subject_teacher() { return $this->belongsTo(SubjectTeacher::class, 'class_subject_id','class_subject_id'); } public function getCreatedAtAttribute() { return $this->formatDateValue($this->getRawOriginal('created_at')); } public function getUpdatedAtAttribute() { return $this->formatDateValue($this->getRawOriginal('updated_at')); } }