mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-05-03 03:55:50 -05:00
19 lines
475 B
PHP
19 lines
475 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Web\Admin\Tools;
|
|
|
|
use App\Enums\Auth\Permissions;
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Http\Request;
|
|
|
|
class LogViewerController extends AdminToolController
|
|
{
|
|
protected static string $name = 'Logs';
|
|
|
|
protected static string $description = 'View Application and Session Logs';
|
|
|
|
protected static string $iconComponent = 'icons.logs';
|
|
|
|
protected static Permissions $neededPermission = Permissions::VIEW_LOG;
|
|
}
|