<?php
namespace App;
use Illuminate\Database\Eloquent\Model;

class Department extends Model
{
    protected $fillable = ['office_id','dept_code','dept_name','remarks','updated_by'];
    protected $table='department';

    function office()
    {
    	return $this->belongsTo('\App\Office','office_id');
    }
}
