Skip to content
Snippets Groups Projects
Commit fd6cd816 authored by CEYLAN EREN's avatar CEYLAN EREN
Browse files

Improvement

parent a0f4c6f0
Branches
1 merge request!28Improvement
......@@ -3,7 +3,7 @@
@section('content')
<body>
<div class="resquer">
<img class="ml-40 rounded-full w-56 shadow-2xl" src="{{$sauveteurs->urlImg}}" alt="sauveur image">
<img class="ml-40 rounded-full w-56 shadow-2xl" src="{{$sauveteurs->urlImg}}" alt="image non disponible">
<div class="px-40 flex flex-col justify-center">
<h1>{{$sauveteurs->prenom}} {{$sauveteurs->nom}}</h1>
<p class="text-gray-400 my-2">{{$sauveteurs->date_naissaince}} / {{$sauveteurs->date_mort}}</p>
......
......@@ -11,7 +11,7 @@
<a href="{{$sauveteur->id}}" class="rounded-lg bg-white p-4 shadow-md flex gap-3 hover:bg-gray-50 transition ease-in-out duration-200 active:bg-gray-100">
<img class="ml-40 rounded-full w-16 shadow-2xl" src="{{$sauveteur->urlImg}}" alt="sauveur image">
<img class="ml-40 rounded-full w-16 shadow-2xl" src="{{$sauveteur->urlImg}}" alt="image non disponible">
<div>
<h2>{{$sauveteur->prenom}} {{$sauveteur->nom}}</h2>
<p class="text-gray-400 my-1">{{$sauveteur->date_naissaince}} / {{$sauveteur->date_mort}}</p>
......
......@@ -78,10 +78,6 @@ Route::get('/community/resquer', function () {
Route::post('add_rescue', [AddRescuerController::class, 'add_rescue'])->name('add_rescue');
Route::post('/community/saved', function () {
return view('/community/saved');
});
Route::get('/community/trips', function () {
return view('community.trips');
})->name('community.trips');
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment