@extends('laravel-crm::layouts.app') @section('content')
@hasleadsenabled

{{ ucfirst(__('laravel-crm::lang.leads')) }}

{{ $totalLeadsCount ?? 0 }}

{{ ucfirst(__('laravel-crm::lang.total_leads')) }}
@endhasleadsenabled @hasdealsenabled

{{ ucfirst(__('laravel-crm::lang.deals')) }}

{{ $totalDealsCount ?? 0 }}

{{ ucfirst(__('laravel-crm::lang.total_deals')) }}
@endhasdealsenabled @hasquotesenabled

{{ ucfirst(__('laravel-crm::lang.quotes')) }}

{{ $totalQuotesCount ?? 0 }}

{{ ucfirst(__('laravel-crm::lang.total_quotes')) }}
@endhasquotesenabled @hasordersenabled

{{ ucfirst(__('laravel-crm::lang.orders')) }}

{{ $totalOrdersCount ?? 0 }}

{{ ucfirst(__('laravel-crm::lang.total_orders')) }}
@endhasordersenabled @hasinvoicesenabled

{{ ucfirst(__('laravel-crm::lang.invoices')) }}

{{ $totalInvoicesCount ?? 0 }}

{{ ucfirst(__('laravel-crm::lang.total_invoices')) }}
@endhasinvoicesenabled @hasdeliveriesenabled

{{ ucfirst(__('laravel-crm::lang.deliveries')) }}

{{ $totalDeliveriesCount ?? 0 }}

{{ ucfirst(__('laravel-crm::lang.total_deliveries')) }}
@endhasdeliveriesenabled @haspurchaseordersenabled

{{ ucfirst(__('laravel-crm::lang.purchase_orders')) }}

{{ $totalPurchaseOrdersCount ?? 0 }}

{{ ucfirst(__('laravel-crm::lang.total_purchase_orders')) }}
@endhaspurchaseordersenabled

{{ ucfirst(__('laravel-crm::lang.clients')) }}

{{ $totalClientsCount ?? 0 }}

{{ ucfirst(__('laravel-crm::lang.total_clients')) }}

{{ ucfirst(__('laravel-crm::lang.people')) }}

{{ $totalPeopleCount ?? 0 }}

{{ ucfirst(__('laravel-crm::lang.total_people')) }}

{{ ucfirst(__('laravel-crm::lang.organizations')) }}

{{ $totalOrganisationsCount ?? 0 }}

{{ ucfirst(__('laravel-crm::lang.total_organizations')) }}

{{ ucfirst(__('laravel-crm::lang.created_last_14_days')) }}

{{ ucfirst(__('laravel-crm::lang.users_online')) }}

@foreach($usersOnline as $user)

{{ $user->name }}

{{ \Carbon\Carbon::parse($user->last_online_at)->diffForHumans() }}.

@endforeach
@endsection