View file hrm-saas-2.5.7/script/app/Models/Designation.php

File size: 302B
<?php

namespace App\Models;

class Designation extends \Eloquent
{

    protected $fillable = [];
    protected $table = 'designation';
    protected $guarded = ['id'];

    protected function department()
    {
        return $this->belongsTo('App\Models\Department', 'department_id', 'id');
    }
}