Commit e045461b authored by Waterfox's avatar Waterfox
Browse files

Merge branch 'DiveListUpgrade'

parents d4de48ef d506650c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
<x-layout>
    <link rel="stylesheet" href="/css/drop-down.css">
    <x-page-title>Inscription aux plongées</x-page-title>
    <x-page-title>Liste des plongées</x-page-title>
    <div class="shadow-md max-w-full rounded-lg overflow-hidden border-2">
        <table class="text-sm text-left text-gray-500 w-full">
            <thead class="text-xs text-gray-700 uppercase bg-gray-50">
+2 −2
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
use App\Models\DivingSession;
use App\Http\Controllers\DivingSignUpController;
use App\Http\Controllers\DiveSessionCreation;
use App\Http\Controllers\DiveSesssionUpdate;
use App\Http\Controllers\DiveSessionUpdate;
use App\Http\Controllers\AuthController;
use Illuminate\Support\Facades\Route;
use Illuminate\Http\Request;
@@ -87,7 +87,7 @@
});

Route::post('/dive/update/{id}', function($id, Request $request){
        DiveSesssionUpdate::update($request, $id);
        DiveSessionUpdate::update($request, $id);
        return redirect('/');
});