<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Section extends Model
{
    //
    protected $fillable = ['office_id','department_id','section_code','section_name','remarks','updated_by'];
    protected $table='section';


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

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


}