@extends('company.layouts.app') @section('title', 'Report - Listing By Sold') @section('content')
@if(empty($listings))
@else
@endif @if(!empty($listings))
{{-- Graph Section --}}
Total Listings
{{ $stats['totalListings'] }}
Total Value
${{ number_format($stats['totalValue'], 0) }}
Total Acres
{{ number_format($stats['totalAcres']) }}
Average Acres
{{ number_format($stats['averageAcres']) }}
Average Value
${{ number_format($stats['averageValue'], 0) }}
Average PPA
${{ number_format($stats['averagePPA'], 0) }}
Report - Sold Listings
{{-- Graph Section --}}
Report - Sold Listings
@foreach ($listings as $listing) @endforeach
Copy
CSV
Excel
PDF
Print
Search:
ID
LISTING
ACRES
COUNTY
STATE
CREATED
SOLD
DOM
PRICE
REP
{{ $listing->id }}
{{ $listing->title }}
{{ $listing->acreage }}
{{ $listing->county }}
{{ $listing->state }}
{{ $listing->created_at ? date('Y-m-d', strtotime($listing->created_at)) : '-' }}
{{ $listing->updated_at ? date('Y-m-d', strtotime($listing->updated_at)) : '-' }}
{{ $listing->dom ?? '-' }}
{{ $listing->price ? '$' . number_format($listing->price) : '-' }}
{{ $listing->listingRep->full_name ?? 'N/A' }}
Showing 1 to 1 of 1 entries
Previous
1
Next
@else
Please select search filters to see results
@endif
@endsection