<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Subject_Group extends Model
{
    //

    protected $fillable = ['subject_id','subject_group','updated_by'];
    protected $table='subject_group';

function subject()
    {
    	return $this->belongsTo('\App\Subject','subject_id');
    }


}
