<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class AreaSpecialisation extends Model
{
use SoftDeletes;
protected $fillable = [
'id', 'area_specialisation_name',
];
protected $hidden = [
'created_by','updated_by','deleted_by','deleted_at','updated_at',
];
}