Your IP : 216.73.216.91


Current Path : /var/www/html/LLCF-APP/app/Models/
Upload File :
Current File : /var/www/html/LLCF-APP/app/Models/Spear.php

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Spear extends Model
{
    protected $table = 'spear';

    public $timestamps = false;

    const CREATED_AT = 'created_on';
    const UPDATED_AT = 'updated_on';

    protected $fillable = [
        'semis_code',
        'school_name',
        'hm_name',
        'hm_contact_num',
        'hm_whatsapp_num',
        'emerg_num',
        'teacher_count',
        'non_teacher_count',
        'medium',
        'stu_count',
        'class1',
        'class2',
        'class3',
        'class4',
        'class5',
        'created_on',
        'updated_on',
    ];
}