@php($page = 'sites') {{env('APP_NAME')}} | Site's Plots {{-- --}} {{-- @livewireStyles --}}
@include("components.navbar")
@include("components.sidebar")

Site's Plot List


Site Information
Title : {{$site->title}}
Type : {{$site->type}}
Address : {{$site->address}}
Summary Information
All Plots : {{number_format($data['all'] ?? 0)}}
Available : {{number_format($data['available'] ?? 0)}}
Active : {{number_format($data['active'] ?? 0)}}
Inactive : {{number_format($data['inactive'] ?? 0)}}
Reserved : {{number_format($data['reserved'] ?? 0)}}
Sold : {{number_format($data['sold'] ?? 0)}}
{{-- orders --}}

All Plots

@php($count = 1) @foreach ($plots as $plot) @php($count++) @endforeach
S/N Plot Number Type Size Price State Status
{{ $count }} {{ $plot->number }} {{ $plot->type }} {{ $plot->size }} {{ formatPrice($plot->price) }} {{ $plot->state }} {{ $plot->status }}
@include("components.footer")
{{-- --}} {{-- --}}