Files
faveo/app/Model/Agent/Group_assign_department.php
2015-05-01 13:13:01 +05:30

12 lines
231 B
PHP

<?php namespace App\Model\Agent;
use Illuminate\Database\Eloquent\Model;
class Group_assign_department extends Model {
protected $table = 'group_assign_department';
protected $fillable = ['group_id','id','department_id'];
}