remove unnecesary route

This commit is contained in:
Andras Bacsai 2024-11-05 10:32:21 +01:00
parent ebaf3c99dd
commit bfad7c7d7f

View file

@ -65,7 +65,6 @@
use App\Livewire\Storage\Show as StorageShow;
use App\Livewire\Subscription\Index as SubscriptionIndex;
use App\Livewire\Subscription\Show as SubscriptionShow;
use App\Livewire\Tags\Index as TagsIndex;
use App\Livewire\Tags\Show as TagsShow;
use App\Livewire\Team\AdminView as TeamAdminView;
use App\Livewire\Team\Index as TeamIndex;
@ -127,7 +126,6 @@
Route::get('/profile', ProfileIndex::class)->name('profile');
Route::prefix('tags')->group(function () {
// Route::get('/', TagsIndex::class)->name('tags.index');
Route::get('/{tagName?}', TagsShow::class)->name('tags.show');
});