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