wip
This commit is contained in:
parent
3eaf471f05
commit
bce3604ae5
|
|
@ -15,9 +15,6 @@
|
|||
<x-nav-link href="{{ route('dashboard') }}" :active="request()->routeIs('dashboard')">
|
||||
{{ __('Dashboard') }}
|
||||
</x-nav-link>
|
||||
<x-nav-link href="{{ route('report') }}" :active="request()->routeIs('report')">
|
||||
{{ __('Report') }}
|
||||
</x-nav-link>
|
||||
<x-nav-link href="{{ route('project') }}" :active="request()->routeIs('project')">
|
||||
{{ __('Project') }}
|
||||
</x-nav-link>
|
||||
|
|
|
|||
|
|
@ -29,7 +29,6 @@
|
|||
Route::get('/dashboard', function () {
|
||||
return view('dashboard');
|
||||
})->name('dashboard');
|
||||
Route::get('/report', [\App\Http\Controllers\ReportController::class, 'index'])->name('report');
|
||||
Route::get('/projects/{project}', [\App\Http\Controllers\ProjectController::class, 'show'])->name('project.show');
|
||||
Route::get('/projects/{projectReport}/download', [\App\Http\Controllers\ProjectReportController::class, 'download'])->name('project.report.download');
|
||||
Route::get('/projects', [\App\Http\Controllers\ProjectController::class, 'index'])->name('project');
|
||||
|
|
|
|||
Loading…
Reference in a new issue