@extends('admin.layouts.app') @section('content')
{{__("Room Attributes")}}
@include('admin.message')
{{__("Add Attributes")}}
@csrf @include('Hotel::admin.room.attribute.form',['parents'=>$rows])
{{__("Add new")}}
@if(!empty($rows))
{{csrf_field()}}
{{__(" Bulk Action ")}}
{{__(" Delete ")}}
{{__('Apply')}}
@endif
{{__('Search')}}
{{__("All Attributes")}}
@if(count($rows) > 0) @foreach($rows as $row) @endforeach @else @endif
{{__("Name")}}
{{__("Actions")}}
{{$row->name}}
{{__('Edit')}}
{{__("Manage Terms")}}
{{__("No data")}}
@endsection