Webseite ohne Anmeldung läuft auf laravel

This commit is contained in:
Robert
2024-01-17 12:43:56 +01:00
parent 57a4470de3
commit bab5bfd58e
435 changed files with 37238 additions and 91 deletions

View File

@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Beispiel: Daten aus der Datenbank</title>
</head>
<body>
@if (isset($data['error']))
<h1>Es gab ein Problem mit der Datenbankverbindung</h1>
<p>Fehlermeldung</p>
<pre> {{$data['beschreibung']}}</pre>
@else
<article>
<h1>Daten aus der Datenbank der Tabelle: Kategorien</h1>
<ul>
@forelse($data as $a)
@if(!empty($a['name']))
<li>{{$a['name']}}</li>
@endif
@empty
<li>Es sind keine Gerichte vorhanden</li>
@endforelse
</ul>
</article>
@endif
</body>
</html>