'Feladványok megtekintése' sablon megvalósítása

This commit is contained in:
unknown 2022-11-04 19:32:03 +01:00
parent dc08871b54
commit 7f78eb2d94

View File

@ -0,0 +1,20 @@
@extends('template')
@section('title')
<title>Feladványok megtekintése</title>
@endsection
@section('content')
@if ( count($Games) == 0 )
<h1>Hoppá! Még nem játszottál egy feladvánnyal sem!</h1>
@else
@foreach($Games as $game)
<p>$game->created_at</p>
<p>$game->created_at</p>
<p>$game->created_at</p>
<p>$game->created_at</p>
@endforeach
@endif
@endsection