16 lines
320 B
PHP
16 lines
320 B
PHP
<?php
|
|
|
|
namespace App\Model\helpdesk\Agent_panel;
|
|
|
|
use App\BaseModel;
|
|
|
|
class Organization extends BaseModel
|
|
{
|
|
/* define the table name */
|
|
|
|
protected $table = 'organization';
|
|
|
|
/* Define the fillable fields */
|
|
protected $fillable = ['id', 'name', 'phone', 'website', 'address', 'head', 'internal_notes'];
|
|
}
|