Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
app
/
Models
:
Designation.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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'); } }