mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 14:36:17 +00:00
Redesign (#124)
- redesign the dashboard - add search bar - Mobile-friendly design
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
<?php
|
||||
|
||||
use App\Http\Controllers\SearchController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::get('/', function () {
|
||||
@ -12,4 +13,6 @@
|
||||
Route::prefix('/servers')->group(function () {
|
||||
require __DIR__.'/server.php';
|
||||
});
|
||||
|
||||
Route::get('/search', [SearchController::class, 'search'])->name('search');
|
||||
});
|
||||
|
Reference in New Issue
Block a user