14 lines
306 B
PHP
14 lines
306 B
PHP
<?php namespace App\Model\helpdesk\Agent_panel;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Canned extends Model {
|
|
|
|
/* define the table name */
|
|
protected $table = 'canned_response';
|
|
|
|
/* Define the fillable fields */
|
|
protected $fillable = ['user_id','title','message','created_at','updated_at'];
|
|
|
|
}
|