@extends('backend.layouts.main') @section('title', 'Rooms') @section('main-container')
@if(session()->has('success'))
{{ session('success') }}
@endif @if(session()->has('error'))
{{ session('error') }}
@endif
Properties
Create New
@foreach ($rooms as $key=> $value) @endforeach
Type Price Tax Num of Rooms Remaining Rooms Created At Action
{{$value->type}} {{$value->price}} {{$value->tax}} {{$value->num_of_rooms}} {{$value->remaining_rooms}} {{date('M,d-Y h:i a',strtotime($value->created_at) )}}
@endsection