19 lines
479 B
PHP
19 lines
479 B
PHP
<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
|