Initial works on domain list view in panel

This commit is contained in:
Pinga 2023-08-10 15:19:40 +03:00
parent 2f9abb2a11
commit 5cc5c72ea4
5 changed files with 160 additions and 4 deletions

View file

@ -2,6 +2,7 @@
use App\Controllers\Auth\AuthController;
use App\Controllers\Auth\PasswordController;
use App\Controllers\HomeController;
use App\Controllers\DomainsController;
use App\Controllers\ProfileController;
use App\Middleware\AuthMiddleware;
use App\Middleware\GuestMiddleware;
@ -31,6 +32,7 @@ $app->group('', function ($route) {
$app->group('', function ($route) {
$route->get('/dashboard', HomeController::class .':dashboard')->setName('home');
$route->get('/domains', DomainsController::class .':view')->setName('domains');
$route->get('/profile', ProfileController::class .':profile')->setName('profile');
$route->get('/profile/notifications', ProfileController::class .':notifications')->setName('notifications');
$route->get('/profile/security', ProfileController::class .':security')->setName('security');