remove unnecesary route
This commit is contained in:
@@ -65,7 +65,6 @@ use App\Livewire\Storage\Index as StorageIndex;
|
|||||||
use App\Livewire\Storage\Show as StorageShow;
|
use App\Livewire\Storage\Show as StorageShow;
|
||||||
use App\Livewire\Subscription\Index as SubscriptionIndex;
|
use App\Livewire\Subscription\Index as SubscriptionIndex;
|
||||||
use App\Livewire\Subscription\Show as SubscriptionShow;
|
use App\Livewire\Subscription\Show as SubscriptionShow;
|
||||||
use App\Livewire\Tags\Index as TagsIndex;
|
|
||||||
use App\Livewire\Tags\Show as TagsShow;
|
use App\Livewire\Tags\Show as TagsShow;
|
||||||
use App\Livewire\Team\AdminView as TeamAdminView;
|
use App\Livewire\Team\AdminView as TeamAdminView;
|
||||||
use App\Livewire\Team\Index as TeamIndex;
|
use App\Livewire\Team\Index as TeamIndex;
|
||||||
@@ -127,7 +126,6 @@ Route::middleware(['auth', 'verified'])->group(function () {
|
|||||||
Route::get('/profile', ProfileIndex::class)->name('profile');
|
Route::get('/profile', ProfileIndex::class)->name('profile');
|
||||||
|
|
||||||
Route::prefix('tags')->group(function () {
|
Route::prefix('tags')->group(function () {
|
||||||
// Route::get('/', TagsIndex::class)->name('tags.index');
|
|
||||||
Route::get('/{tagName?}', TagsShow::class)->name('tags.show');
|
Route::get('/{tagName?}', TagsShow::class)->name('tags.show');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user