Gfabrij/resources/views/personas/index.blade.php
2026-05-04 19:19:56 -03:00

19 lines
356 B
PHP

<!doctype html>
<html lang="es">
<head>
<title>Persona</title>
</head>
<body>
<ul>
@foreach($personas as $per)
<li>
<strong>{{ $per->apellido }}</strong>
<strong>{{ $per->nombre }}</strong>
<strong>{{ $per->dni }}</strong>
(ID: {{ $per->id_persona}})
</li>
@endforeach
</ul>
</body>
</html>