{{ __('Dashboard') }}

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

{{ __('Total Property') }}

{{ $totalProperties }}

{{ __('Total Units') }}

{{ $totalUnits }}

{{ __('Total Tenants') }}

{{ $totalTenants }}

{{ __('Total Maintainers') }}

{{ $totalMaintainers }}

{{ __('Rent Overview') }}

{{ currencyPrice($yearlyTotalAmount) }}

{{ __('My Properties') }}

@forelse ($properties as $property) @empty @endforelse
{{ __('Name') }} {{ __('Units') }} {{ __('Available Unit') }} {{ __('Tenants') }} {{ __('Maintainer') }}
{{ $property->name }}

{{ $property->address }}

{{ $property->number_of_unit }} {{ $property->number_of_unit - $property->total_tenant }} {{ $property->total_tenant }} {{ $property->total_maintainers }}
{{ __("No data found") }}

{{ __('Tickets') }}

@forelse ($tickets as $ticket) @empty @endforelse
{{ Str::limit($ticket->title, 25, '...') }}
{{ __("No data found") }}