19 lines
480 B
PHP
19 lines
480 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Staff;
|
|
|
|
use App\DataTables\WorklistDataTable;
|
|
use App\Http\Controllers\HashidControllerBase;
|
|
use App\Services\SessionHelper;
|
|
|
|
class WorklistController extends HashidControllerBase
|
|
{
|
|
public function index(WorklistDataTable $dataTable)
|
|
{
|
|
SessionHelper::setIntendedUrl();
|
|
$modalities = ['CT', 'MR', 'CR', 'MG', 'US', 'DX', 'XA'];
|
|
|
|
return $dataTable->render('staff.worklist.index', compact('modalities'));
|
|
}
|
|
}
|