links = [ [ 'name' => 'Home', 'link' => route('welcome'), ], [ 'name' => 'Audition Information', 'link' => route('audition-information'), ], [ 'name' => 'Clinic Information', 'link' => '#', ], [ 'name' => 'Audition Etudes', 'link' => '#', ], ]; } /** * Get the view / contents that represent the component. */ public function render(): View|Closure|string { return view('components.layout.app'); } }