@extends('layouts.admin') @section('page-title') Room Types List @endsection @section('page-top-title') Room Types @endsection @section('content-body')
{{-- Messages --}} @include('backend.inc.messages')

Current Room Types

Add New Room Type {{-- Add Room Type Modal --}}
@foreach ($roomTypes as $roomType) @endforeach
Type ID Room Type Description Actions
{{ $roomType->id }} {{ Str::upper($roomType->name) }} {{ $roomType->description }} {{-- Delete --}}
@endsection @section('page-scripts') {{-- --}} @endsection