database migrations for help desk tickets, and queues
models for help desk tickets and queues model for EveMail modified app config for queues added new routes for jump bridges composer updated for autoloader modified JumpBridgeController added new controllers for HelpDesk and HelpDeskAdmin
This commit is contained in:
28
app/Models/HelpDesk/HelpDeskTicketResponse.php
Normal file
28
app/Models/HelpDesk/HelpDeskTicketResponse.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class HelpDeskTicketResponse extends Model
|
||||
{
|
||||
//Table Name
|
||||
protected $table = 'help_desk_ticket_responses';
|
||||
|
||||
//Primary Key
|
||||
public $primaryKey = 'id';
|
||||
|
||||
//Timestamps
|
||||
public $timestamps = true;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'ticket_id',
|
||||
'assigned_id',
|
||||
'body',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user