creo que por ahora voy bien

This commit is contained in:
2025-03-03 04:27:19 -03:00
parent 97b97c0335
commit caa7784247
13 changed files with 224 additions and 102 deletions

View File

@@ -0,0 +1,14 @@
@php
use Illuminate\Support\Str;
@endphp
@foreach ($recetas as $receta)
<div class="bg-white m-2 p-4 rounded-lg shadow">
<h3 class="text-xl font-semibold mb-2">{{ $receta->title }}</h3>
<p class="text-gray-600 mb-4">{{ Str::limit($receta->message, 20, "...") }}</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">Ultima Vez Actualizado: {{ $receta->updated_at }} </span>
</div>
</div>
@endforeach