Remove search for now, increase upload filesize limits

This commit is contained in:
yuriko 🦊 2025-05-25 17:14:11 -04:00
parent 1442dbfa60
commit cb086c4708
21 changed files with 117 additions and 244 deletions

View file

@ -10,6 +10,7 @@ use App\Livewire\Posts\Edit as EditPost;
use App\Livewire\Posts\View as ViewPost;
use App\Livewire\Tags\Index as TagsIndexPage;
use App\Livewire\Tags\Groups as TagGroupsPage;
use App\Livewire\Tags\View as TagViewPage;
use App\Models\Post;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\Facades\Storage;
@ -36,6 +37,7 @@ Route::middleware('auth')->prefix('posts')->group(function () {
// Tag routes
Route::middleware('auth')->prefix('tags')->group(function () {
Route::get('/', TagsIndexPage::class)->name('tags.home');
Route::get('/view/{tag}', TagViewPage::class)->name('tags.view');
Route::get('/groups', TagGroupsPage::class)->name('tags.groups');
});