mirror of
https://github.com/getnamingo/registry.git
synced 2025-08-04 16:51:29 +02:00
Added domain check page
This commit is contained in:
parent
512de0552a
commit
6855dbaccd
9 changed files with 248 additions and 22 deletions
|
@ -38,7 +38,10 @@ $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->map(['GET', 'POST'], '/domain/check', DomainsController::class . ':check')->setName('domaincheck');
|
||||
|
||||
$route->get('/contacts', ContactsController::class .':view')->setName('contacts');
|
||||
$route->get('/hosts', HostsController::class .':view')->setName('hosts');
|
||||
$route->get('/registrars', RegistrarsController::class .':view')->setName('registrars');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue