OwlCyberSecurity - MANAGER
Edit File: Department.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Department extends Model { use SoftDeletes; protected $fillable = [ 'name', 'english_name', 'description', ]; }