diff --git a/app/Http/Controllers/AuditionInformationPage.php b/app/Http/Controllers/AuditionInformationPage.php index 321d50f..cca0243 100644 --- a/app/Http/Controllers/AuditionInformationPage.php +++ b/app/Http/Controllers/AuditionInformationPage.php @@ -6,5 +6,8 @@ use Illuminate\Http\Request; class AuditionInformationPage extends Controller { - // + public function __invoke() + { + return view('audition-information'); + } } diff --git a/app/View/Components/Layout/App.php b/app/View/Components/Layout/App.php index da66b92..66ea40b 100644 --- a/app/View/Components/Layout/App.php +++ b/app/View/Components/Layout/App.php @@ -16,9 +16,13 @@ class App extends Component public function __construct() { $this->links = [ + [ + 'name' => 'Home', + 'link' => route('welcome'), + ], [ 'name' => 'Audition Information', - 'link' => '#', + 'link' => route('audition-information'), ], [ 'name' => 'Clinic Information', diff --git a/resources/views/audition-information.blade.php b/resources/views/audition-information.blade.php new file mode 100644 index 0000000..3f3a2b4 --- /dev/null +++ b/resources/views/audition-information.blade.php @@ -0,0 +1,25 @@ + +
+ + HS / JH / 7th / Jazz Auditions +
+

January 12, 2026

+

Wagoner High School

+

Entry fee is $10.00 per entry

+

9th Graders may audition for the Jr. High and/or HS Band. Those auditioning for both bands must pay a + $10.00 audition fee for each instrument they audition on for each band. (A 9th grade trumpet player + auditioning for the Jr. High and HS band would pay $20.00; a 9th grade sax player auditioning on + alto + and tenor for the Jr. High and HS band would pay $40.00).

+

9th Graders, auditioning for both Jr. High and HS, who score well enough to be in the HS band will be + placed + in the HS band.

+
+
+ + First / Second Year Nominations +

Students are selected by director recommendation. Directors may being up to 9 students for each band, but + no more than one drummer or two alto saxes for either. Entry fee is $10.00 and includes lunch.

+
+
+
diff --git a/resources/views/components/card.blade.php b/resources/views/components/card.blade.php index da2e1f0..70ade34 100644 --- a/resources/views/components/card.blade.php +++ b/resources/views/components/card.blade.php @@ -1,12 +1,18 @@ -@props(['header' => null]) -
+@props(['header' => null, 'body' => null]) +
merge(['class' => 'h-full flex flex-col']) }}> @if($header)
attributes->merge(['class'=>'bg-gray-700 text-white p-3 font-semibold rounded-t-md']) }}> {{ $header }}
@endif -
merge(['class'=>'bg-gray-400 text-gray-800 p-3 flex-grow']) }}> - {{ $slot }} -
+ @if($body) +
attributes->merge(['class'=>'bg-gray-400 text-gray-800 p-3']) }}> + {{ $body }} +
+ @else +
+ {{ $slot }} +
+ @endif
diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index 47afbb9..a2aaca5 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -1,52 +1,60 @@
- - Audition Info -
-
Audition Date
-
{{ $concertAuditionDate }}
-
Audition Location
-
{{ $concertAuditionLocation }}
-
+ + Audition Info + +
+
Audition Date
+
{{ $concertAuditionDate }}
+
Audition Location
+
{{ $concertAuditionLocation }}
+
+
- + Entry Deadlines -

Concert/Jazz: {{ $concertEntryDeadline }}

-

First/Second Year: {{ $beginnerEntryDeadline }}

+ +

Concert/Jazz: {{ $concertEntryDeadline }}

+

First/Second Year: {{ $beginnerEntryDeadline }}

+
- + Clinic Info -
-
Concert Band Clinic
-
-

{{ $concertClinicDates }}

-

{{ $concertClinicLocation }}

-
-
First/Second Year & Jazz Clinic
-
-

{{ $beginnerClinicDates }}

-

{{ $beginnerClinicLocation }}

-
+ +
+
Concert Band Clinic
+
+

{{ $concertClinicDates }}

+

{{ $concertClinicLocation }}

+
+
First/Second Year & Jazz Clinic
+
+

{{ $beginnerClinicDates }}

+

{{ $beginnerClinicLocation }}

+
-
+
+
- + Officers -
- @foreach($officers as $officer) -
{{ $officer['office'] }}
-
{{ $officer['name'] }}, {{ $officer['school'] }}
- @endforeach -
+ +
+ @foreach($officers as $officer) +
{{ $officer['office'] }}
+
{{ $officer['name'] }}, {{ $officer['school'] }}
+ @endforeach +
+
- - News Story - + + News Story +
diff --git a/routes/web.php b/routes/web.php index 114b3a2..0d11756 100644 --- a/routes/web.php +++ b/routes/web.php @@ -1,6 +1,8 @@ name('welcome'); +Route::get('/audition-information', AuditionInformationPage::class)->name('audition-information');