Initial Commit

This commit is contained in:
dann4624
2022-09-28 09:38:08 +02:00
parent cac476f80f
commit 2d04a269e6
355 changed files with 52166 additions and 25 deletions
@@ -0,0 +1,18 @@
<h2>@lang('rooms')</h2>
@if(count($data->rooms) >= 1)
<table class="">
@foreach($data->rooms as $room)
<tr>
<td>
<a href="{{route('rooms.show',['room' => $room])}}" target="_blank"
class="btn btn-success">
{{$room->name}}
</a>
</td>
</tr>
@endforeach
</table>
@else
@lang('no_amount') @lang('rooms')
@endif