name('showcase'); Route::get('symbols.json', [ShowcaseSymbolController::class, 'index'])->name('symbols'); Route::get('symbols/{style}/{name}.svg', [ShowcaseSymbolController::class, 'show'])->name('symbol'); Route::view('shell/{page?}', 'livewire-material::showcase.shell') ->whereIn('page', ['inbox', 'starred', 'sent', 'drafts', 'travel', 'receipts']) ->name('shell');