Files
faveo/app/Model/Agent_panel/Organization.php
2015-05-01 13:13:01 +05:30

14 lines
303 B
PHP

<?php namespace App\Model\Agent_panel;
use Illuminate\Database\Eloquent\Model;
class Organization extends Model {
/* define the table name */
protected $table = 'organization';
/* Define the fillable fields */
protected $fillable = ['id','name','phone','website','address','internal_notes'];
}