@extends('layouts.admin') @section('heading','Dashboard') @section('subheading','Content, listings and MLS synchronization at a glance.') @section('content')
@foreach($stats as $label=>$value)
{{ ucfirst($label) }}{{ number_format($value) }}
@endforeach

Recent MLS synchronization

@forelse($syncs as $sync)@empty@endforelse
StartedDirectionStatusProcessedMessage
{{ $sync->started_at }}{{ $sync->direction }}{{ $sync->status }}{{ $sync->processed }}{{ $sync->message }}
MLS integration is disabled until credentials are configured.
@endsection