@extends('layouts.sales') @section('content')

Invitation Link

Share this link to invite new customers.

Customers

{{ $totalCustomers }}

Profit
YEAR {{ date('Y') }}

${{ $totalRevenue }}

Latest 5 Customers

@forelse ($customers as $customer) @empty @endforelse
Name Phone Status Email
{{ $customer->first_name.' '.$customer->last_name }} {{ $customer->mobile }} {{ $customer->status == 0 ? 'Not Active' : 'Active' }} {{ $customer->email }}
No customers found.
@endsection @section('scripts') @endsection