25 lines
518 B
PHP
25 lines
518 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
||
|
|
|
||
|
|
class Teacher extends Model
|
||
|
|
{
|
||
|
|
use HasFactory;
|
||
|
|
use SoftDeletes;
|
||
|
|
protected $dates = ['deleted_at'];
|
||
|
|
protected $table = 'teachers';
|
||
|
|
protected $fillable = [
|
||
|
|
'id',
|
||
|
|
'teacher_title',
|
||
|
|
'teacher_sub_title',
|
||
|
|
'teacher_image',
|
||
|
|
'description',
|
||
|
|
'address',
|
||
|
|
'contact_number'
|
||
|
|
];
|
||
|
|
}
|