File "Designation.php"
Full Path: /home/isoftco/public_html/hrm/app/Models/Designation.php
File size: 302 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Models;
class Designation extends BaseModel
{
protected $fillable = [];
protected $table = 'designation';
protected $guarded = ['id'];
protected function department()
{
return $this->belongsTo('App\Models\Department', 'department_id', 'id');
}
}