feat: prepping launch
This commit is contained in:
@@ -3,6 +3,9 @@
|
||||
use App\Http\Controllers\ProfileController;
|
||||
use App\Http\Controllers\PageController;
|
||||
use App\Http\Controllers\ArtworkController;
|
||||
use App\Http\Controllers\ArtistController;
|
||||
use App\Http\Controllers\PodcastController;
|
||||
use App\Http\Controllers\EpisodeController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use App\Livewire\Counter;
|
||||
|
||||
@@ -20,11 +23,15 @@ use App\Livewire\Counter;
|
||||
Route::get('/', [PageController::class, 'landing'])->name('home');
|
||||
Route::get('/artworks', [ArtworkController::class, 'index']);
|
||||
Route::get('/artworks/{id}', [ArtworkController::class, 'show']);
|
||||
|
||||
Route::get('/artist/{slug}', [ArtistController::class, 'show']);
|
||||
Route::get('/artists', [ArtistController::class, 'index']);
|
||||
Route::get('/podcasts/{slug}', [PodcastController::class, 'show']);
|
||||
Route::get('/podcast/{any}/episode/{slug}', [EpisodeController::class, 'show']);
|
||||
Route::get('/dashboard', function () {
|
||||
return view('dashboard');
|
||||
})->middleware(['auth', 'verified'])->name('dashboard');
|
||||
|
||||
|
||||
Route::middleware(['auth', 'verified'])->group(function () {
|
||||
Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit');
|
||||
Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update');
|
||||
|
||||
Reference in New Issue
Block a user