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

{{__("Hotel Attributes")}}

@include('admin.message')
{{__("Add Attributes")}}
@csrf @include('Hotel::admin/attribute/form',['parents'=>$rows])
@if(!empty($rows))
{{csrf_field()}}
@endif
{{__("All Attributes")}}
@if(count($rows) > 0) @foreach($rows as $row) @endforeach @else @endif
{{__("Name")}} {{__("Position Order")}} {{__("Actions")}}
{{$row->name}} {{$row->position ?? 0}} {{__('Edit')}} {{__("Manage Terms")}}
{{__("No data")}}
@endsection