{{ __('Dashboard') }}

{{ __('Welcome back') }}, {{ auth()->user()->name }}

{{ $unit->unit_name }}

{{ $property->name }}

{{ __('Current Rent') }}

{{ currencyPrice($tenant->general_rent) }}

{{ __('Total Tickets') }}

{{ $totalTickets }}

{{ __('Paid Invoice') }}

@foreach ($invoices as $invoice) @if ($invoice->status == ACTIVE) @endif @endforeach
{{ __('Invoice No.') }} {{ __('Reference') }} {{ __('Issus Date') }} {{ __('Amount') }}
{{ $invoice->invoice_no }} {{ $invoice->name }} {{ $invoice->created_at->format('Y-m-d') }} {{ currencyPrice($invoice->amount) }}

{{ __('Unpaid Invoice') }}

@foreach ($invoices as $invoice) @if ($invoice->status != ACTIVE) @endif @endforeach
{{ __('Invoice No.') }} {{ __('Reference') }} {{ __('Due Date') }} {{ __('Amount') }}
{{ $invoice->invoice_no }} {{ $invoice->name }} {{ $invoice->due_date }} {{ currencyPrice($invoice->amount) }}
@if (ownerCurrentPackage(auth()->user()->owner_user_id)?->notice_support == ACTIVE)

{{ __('Notice Board') }}

@forelse ($notices as $notice) @if ($notice->start_date <= $today && $notice->end_date >= $today) @endif @empty {{ __('No Data Found') }} @endforelse
{{ Str::limit($notice->title, 40, '...') }}
@endif