31 lines
583 B
PHP
31 lines
583 B
PHP
<html>
|
|
<head>
|
|
<title>Mi Web</title>
|
|
</head>
|
|
<body>
|
|
<h1>!Hola Mundo!</h1>
|
|
<p>Tu Dni es: {{$dni}} </p>
|
|
</body>
|
|
|
|
@if (condicion)
|
|
#Logica a resolver
|
|
@endif
|
|
|
|
@if (condicion)
|
|
#Logica a resolver
|
|
@else
|
|
#Logica a resolver
|
|
@endif
|
|
|
|
@for ($i = 0; $i < 10; $i++)
|
|
#El valor actual es {{ $i }}
|
|
@endfor
|
|
|
|
@while (true)
|
|
<p>Soy un bucle while infinito!</p>
|
|
@endwhile
|
|
|
|
@foreach ($users as $user)
|
|
<p>Usuario {{ $user->name }} con identificador:</p>
|
|
@endforeach
|
|
</html> |