@extends('admin.layouts.app') @section('content')

{{__("Room Management")}}

@include('admin.message')
{{__("Add Room")}}
@csrf @include('Hotel::admin.room.form')
@if(!empty($rows))
{{csrf_field()}}
@endif

{{__('Found :total items',['total'=>$rows->total()])}}

@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{ __('Room name')}} {{ __('Number')}} {{ __('Price')}} {{ __('Status')}}
{{$row->title}} {{$row->number}} {{format_money($row->price)}} {{ $row->status }} {{__('Edit')}}
{{__("No room found")}}
{{$rows->appends(request()->query())->links()}}
@endsection