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

class Template extends Model
{
	protected $fillable = ['title','top','top_type','top1','top1_type','top2','top2_type','top3','top3_type','mid','mid_type','mid1','mid1_type','mid2','mid2_type','mid3','mid3_type','bottom','bottom_type','bottom1','bottom1_type','bottom2','bottom2_type','bottom3','bottom3_type','updated_by','office_id'];
    protected $table='template';

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