<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Gcon extends Model
{
	protected $table='gcons';
    protected $fillable = ['tname','fname','office_id'];

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