@extends('adminlte::page') @section('title', 'Rooms List') @section('content_header')

Rooms

@endsection @section('content')

List of Rooms

@foreach ($rooms as $room) @endforeach
ID Room Name Property Type Price Image Actions
{{ $room->id }} {{ $room->room_name }} {{ $room->property_name }} {{ $room->type_bed }} {{ $room->price }} @if ($room->image_link) Room Image @else
No Thumbnail Available
@endif
Edit Upload Image
@csrf @method('DELETE')
@endsection