Introduces v2 role routes/views and moves request list filtering, sorting, and pagination to the backend for better performance. Also switches shared pages to a generated Tailwind CSS bundle with supporting npm assets.
28 lines
501 B
PHP
28 lines
501 B
PHP
<?php
|
|
|
|
namespace App\Controllers\Pages;
|
|
|
|
use App\Controllers\BaseController;
|
|
|
|
class CsController extends BaseController
|
|
{
|
|
|
|
public function __construct()
|
|
{
|
|
helper(['url', 'form', 'text']);
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$config = require APPPATH . 'Views/shared/config.php';
|
|
return view('cs/index', ['roleConfig' => $config['cs']]);
|
|
}
|
|
|
|
public function indexV2()
|
|
{
|
|
$config = require APPPATH . 'Views/shared/config.php';
|
|
return view('v2/cs/index', ['roleConfig' => $config['cs']]);
|
|
}
|
|
|
|
}
|