Attendize/app/Http/Controllers/HelpDeskController.php

32 lines
397 B
PHP
Raw Normal View History

2020-04-30 08:34:51 +00:00
<?php
namespace App\Http\Controllers;
2020-04-30 10:19:16 +00:00
use App\Models\HelpTopic;
2020-04-30 08:34:51 +00:00
class HelpDeskController extends Controller
{
public function show(){
}
/**
* Show the form for creating the help desk ticket
*/
public function create(){
2020-04-30 10:19:16 +00:00
return $this->render('Pages.HelpDeskCreateForm');
2020-04-30 08:34:51 +00:00
}
public function store(){
}
public function comment(){
}
}