Card changes
This commit is contained in:
parent
61f6e3d4aa
commit
1c0f6d64af
|
|
@ -0,0 +1,13 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
|
||||||
|
class ClinicInformationPage extends Controller
|
||||||
|
{
|
||||||
|
public function __invoke()
|
||||||
|
{
|
||||||
|
return view('clinic-information');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
<x-layout.app>
|
<x-layout.app>
|
||||||
<div class="w-full max-w-4xl mx-auto space-y-6">
|
<x-card class="w-full max-w-4xl mx-auto">
|
||||||
<x-card>
|
|
||||||
<x-slot:header>HS / JH / 7th / Jazz Auditions</x-slot:header>
|
<x-slot:header>HS / JH / 7th / Jazz Auditions</x-slot:header>
|
||||||
<div class="space-y-3">
|
<div class="space-y-3">
|
||||||
<p>January 12, 2026</p>
|
<p>January 12, 2026</p>
|
||||||
|
|
@ -16,10 +15,9 @@
|
||||||
in the HS band.</p>
|
in the HS band.</p>
|
||||||
</div>
|
</div>
|
||||||
</x-card>
|
</x-card>
|
||||||
<x-card>
|
<x-card class="w-full max-w-4xl mx-auto mt-6">
|
||||||
<x-slot:header>First / Second Year Nominations</x-slot:header>
|
<x-slot:header>First / Second Year Nominations</x-slot:header>
|
||||||
<p>Students are selected by director recommendation. Directors may being up to 9 students for each band, but
|
<p>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.</p>
|
no more than one drummer or two alto saxes for either. Entry fee is $10.00 and includes lunch.</p>
|
||||||
</x-card>
|
</x-card>
|
||||||
</div>
|
|
||||||
</x-layout.app>
|
</x-layout.app>
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
<x-layout.app>
|
||||||
|
|
||||||
|
</x-layout.app>
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
@php use Illuminate\View\ComponentSlot; @endphp
|
@php use Illuminate\View\ComponentSlot; @endphp
|
||||||
@props(['header' => null, 'body' => null])
|
@props(['header' => null, 'body' => null])
|
||||||
<div {{ $attributes->merge(['class' => 'h-full flex flex-col']) }}>
|
<div {{ $attributes }}>
|
||||||
@if($header instanceof ComponentSlot)
|
@if($header instanceof ComponentSlot)
|
||||||
<div {{ $header->attributes->merge(['class'=>'bg-gray-700 text-white p-3 font-semibold rounded-t-md']) }}>
|
<div {{ $header->attributes->merge(['class'=>'bg-gray-700 text-white p-3 font-semibold rounded-t-md']) }}>
|
||||||
{{ $header }}
|
{{ $header }}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue