diff --git a/resources/views/admin/audition-settings.blade.php b/resources/views/admin/audition-settings.blade.php index eb338cf..c32ad8a 100644 --- a/resources/views/admin/audition-settings.blade.php +++ b/resources/views/admin/audition-settings.blade.php @@ -24,7 +24,6 @@ Scoring Settings - If students cannot advance to further honor groups, leave next event name blank
Enable score entry by judges @@ -37,14 +36,17 @@ Financial Settings - If students cannot advance to further honor groups, leave next event name blank Fee Structure {{-- Values should be one of the options in the boot method InvoiceDataServiceProvider --}} - - + + 'a']) {{-- Use if the link to the right needs to be a button --}} -
  • merge(['class'=>'flex items-center justify-between gap-x-6 px-4 py-5 sm:px-6']) }}> +
  • merge(['class'=>'flex items-center justify-between gap-x-6 px-4 py-4 sm:px-6']) }}>
    {{ $slot }}
    diff --git a/resources/views/dashboard/dashboard.blade.php b/resources/views/dashboard/dashboard.blade.php index f3fbb6f..237d9f5 100644 --- a/resources/views/dashboard/dashboard.blade.php +++ b/resources/views/dashboard/dashboard.blade.php @@ -4,4 +4,31 @@ @if(! Auth::user()->school_id) You aren't currently associated with a school. Click here to choose or create one. @endif +
    +
    {{-- Column 1 --}} + + User Options + + + + My Profile + + + + + My School + + + @if(Auth::user()->school_id) + + + My Invoice + + + @endif + + +
    + +
    diff --git a/resources/views/dashboard/profile.blade.php b/resources/views/dashboard/profile.blade.php index 0512bea..3d6b6d2 100644 --- a/resources/views/dashboard/profile.blade.php +++ b/resources/views/dashboard/profile.blade.php @@ -18,59 +18,3 @@ - - - -{{--@php use Illuminate\Support\Facades\Auth; @endphp - - User Profile -
    - - @if (session('status') === 'profile-information-updated') -
    - Profile Info has been updated. -
    - @endif - -
    - @csrf - @method('PUT') -
    -
    - - - - - -
    -
    -
    - Cancel - Update Profile -
    -
    - -
    - - - @if (session('status') === 'password-updated') -
    - Password has been updated. -
    - @endif - - - - - - - -
    -
    -
    --}} diff --git a/routes/user.php b/routes/user.php index 8be2957..c00e9b0 100644 --- a/routes/user.php +++ b/routes/user.php @@ -10,8 +10,8 @@ use Illuminate\Support\Facades\Route; Route::middleware(['auth', 'verified'])->group(function () { Route::get('/dashboard', [DashboardController::class, 'dashboard'])->name('dashboard'); - Route::get('/profile', [DashboardController::class, 'profile']); - Route::get('/my_school', [DashboardController::class, 'my_school']); + Route::get('/profile', [DashboardController::class, 'profile'])->name('my_profile'); + Route::get('/my_school', [DashboardController::class, 'my_school'])->name('my_school'); Route::get('/my_invoice', [DashboardController::class, 'my_invoice'])->name('my_invoice'); });