@extends('../layout/home-layout') @section('title','Room Type') @section('home-content')
Add room type
@if (count($room_types) > 0) @foreach ($room_types as $room_type) @endforeach @endif
# Type Area Max adults Max children Status Action
{{ $room_type->room_type_id }}
{{ $room_type->room_type_Select }}
{{ $room_type->room_type_area }}
{{ $room_type->room_type_max_adults }}
{{ $room_type->room_type_max_children }}
@if ($room_type->room_type_status == '1')
Active
@else
Inactive
@endif
@if ($room_type->room_type_id != 0)
@endif
@extends('includes.links') @if($errors->any()) @foreach($errors->all() as $error) @endforeach @endif @endsection