Initial Commit
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user