File "OnlineExamQuestionOption.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Models/OnlineExamQuestionOption.php
File size: 1.3 KB
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Models;

use Illuminate\Support\Facades\Auth;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use App\Traits\DateFormatTrait;


class OnlineExamQuestionOption extends Model
{
    use HasFactory, DateFormatTrait;
    protected $fillable = [
        'question_id',
        'option',
        'is_answer',
        'school_id',
    ];

    public function getOptionAttribute($value){
        return htmlspecialchars_decode($value);
    }


    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')) {
                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 getCreatedAtAttribute()
    {
        return $this->formatDateValue($this->getRawOriginal('created_at'));
    }
    
    public function getUpdatedAtAttribute()
    {
        return $this->formatDateValue($this->getRawOriginal('updated_at'));
    }
    

}