@extends('layouts.master') @push('page-styles') @endpush @section('content')

{{$total_projects}}

Projects

{{$total_clients}}

Individuals

{{$total_houses}}

Houses

{{$total_employees}}

Employees

Expenses

Sales And Expense Overview

Sales Overview

Sales LineChart Overview

Products

{{$products}}

Previous Month {{$last_month_products}}

Sales

{{$sales}}

Previous Month {{$last_month_sales}}

Expenses

{{app(\App\Settings\ThemeSettings::class)->currency_symbol.' '.number_format((float)$expenses, 2, '.', '')}}

Previous Month {{app(\App\Settings\ThemeSettings::class)->currency_symbol.' '.number_format((float)$last_month_expenses, 2, '.', '')}}

Profit

{{app(\App\Settings\ThemeSettings::class)->currency_symbol.' '.number_format((float)$profit, 2, '.', '')}}

Previous Month {{app(\App\Settings\ThemeSettings::class)->currency_symbol.' '.number_format((float)$last_month_profit, 2, '.', '')}}

Clients

@if (!empty($latest_clients)) @foreach ($latest_clients as $client) @endforeach @endif
ID Name Username Email Status
{{$client->client->clt_id ?? 'N/A'}}

avatar {{$client->firstname.' '.$client->lastname}} CEO

{{$client->username}} {{$client->email}} {{$client->active}}

Recent Projects

@if (!empty($latest_projects)) @foreach ($latest_projects as $project) @endforeach @endif
Project Name Progress Priority

{{$project->name}}

{{$project->priority}}

Invoices

@if (!empty($latest_invoices)) @foreach ($latest_invoices as $invoice) @endforeach @endif
Invoice ID Client Due Date Total Status
{{$invoice->inv_id}} @if (!empty($invoice->client_id))

{{$invoice->client->user->firstname.' '.$invoice->client->user->lastname}}

@endif
{{format_date($invoice->due_date,'d M, Y')}} {{app(\App\Settings\ThemeSettings::class)->currency_symbol.' '.$invoice->total}} {{$invoice->status}}
@endsection @push('page-scripts') @endpush