mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-21 10:06:05 +02:00
Initial works on domain list view in panel
This commit is contained in:
parent
2f9abb2a11
commit
5cc5c72ea4
5 changed files with 160 additions and 4 deletions
|
@ -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');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue