KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.4.41 (Ubuntu)
System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64
User : www-data ( 33)
PHP Version : 8.2.12
Disable Function : NONE
Directory :  /var/www/coaching/coaching.bizkrypt.com/app/Models/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/coaching/coaching.bizkrypt.com/app/Models/Testresult.php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class Testresult extends Model
{
    use HasFactory;
    protected $casts = [
        'date' => 'datetime:Y-m-d',
        'created_at' => 'datetime:Y-m-d H:i:s',
        'updated_at' => 'datetime:Y-m-d H:i:s',
    ];
    protected $fillable = ['users_admission_id', 'class_code', 'section_code', 'testcode', 'subject', 'max_marks', 'obtained_marks', 'date', 'smsflag'];

    public function school()
    {
        return $this->belongsToMany(School::class, 'users_schools');
    }

    public function class ()
    {
        return $this->belongsToMany(Classes::class, 'users_classes_sections');
    }

    public function section()
    {
        return $this->belongsToMany(Section::class, 'users_classes_sections');
    }

}

Anon7 - 2021