Add Corporate Specialities

This commit is contained in:
2022-08-26 10:31:10 +07:00
parent 6561c98f19
commit be31b6f764
33 changed files with 2078 additions and 320 deletions

23
app/Models/Speciality.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
namespace App\Models;
use App\Traits\Blameable;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Speciality extends Model
{
use HasFactory, SoftDeletes, Blameable;
protected $fillable = [
'code',
'name'
];
protected $guarded = [
'code',
'name'
];
}