@extends('layouts.dashboard') @section('title', __('messages.dashboard')) @section('header', __('messages.dashboard')) @section('sidebar') @include('owner.partials.sidebar') @endsection @section('content')
{{ $totalBookings ?? 0 }}
{{ $pendingBookings ?? 0 }} awaiting approval
{{ $activeContracts ?? 0 }}
out of {{ $totalContracts ?? 0 }} total contracts
{{ number_format($totalPaid ?? 0, 0) }}
TZS in completed payments
{{ number_format($outstandingBalance ?? 0, 0) }}
TZS awaiting collection
{{ $pendingInvoices ?? 0 }}
{{ $overdueInvoices ?? 0 }} past due date
{{ $overduePaymentsCount ?? 0 }}
payments requiring follow-up
{{ $totalReceipts ?? 0 }}
official receipts generated
{{ $booking->name }}
{{ $booking->property->title ?? 'N/A' }}
{{ $booking->booking_type ?? 'rent' }} • {{ \Carbon\Carbon::parse($booking->preferred_date)->format('M d, Y') }}
{{ __('messages.no_bookings_found') ?? 'No bookings found' }}
{{ $contract->contract_number }}
{{ $contract->property->title ?? 'N/A' }}
{{ $contract->customer->name ?? 'N/A' }} • {{ number_format($contract->total_amount, 0) }} {{ $contract->currency }}
{{ __('messages.no_contracts_found') ?? 'No contracts found' }}
{{ $payment->payment_number }}
{{ $payment->contract->contract_number ?? 'N/A' }}
{{ \Carbon\Carbon::parse($payment->payment_date)->format('M d, Y') }}
{{ __('messages.no_payments_found') ?? 'No payments found' }}