@extends('layout.mainlayout') @section('content')
@foreach($booths as $booth) @endforeach
Booth Number Dimensions Type Price Status Action
{{ $booth->booth_number }} {{ $booth->dimensions }} {{ $booth->scheme_type }} {{ number_format($booth->price, 2) }} @if($booth->status == 'available') Available @elseif($booth->status == 'booked') Booked @else Reserved @endif
@endsection