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
35 lines
552 B
PHP
35 lines
552 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use App\Http\Controllers\Controller;
|
|
|
|
class HelpDeskController extends Controller
|
|
{
|
|
/**
|
|
* Display form to submit a new ticket
|
|
*/
|
|
public function displayNewTicket() {
|
|
|
|
}
|
|
|
|
public function storeTicket() {
|
|
|
|
}
|
|
|
|
/**
|
|
* Display current open tickets for the user
|
|
*/
|
|
public function displayMyTickets() {
|
|
|
|
}
|
|
|
|
/**
|
|
* Modify currently open ticket for the user
|
|
*/
|
|
public function editTicket(Request $request) {
|
|
|
|
}
|
|
}
|