@extends('layouts.app') @section('title', 'Dashboard') @section('content')

Hello, {{ Auth::user()->name ?? 'Ishmael' }}! 👋

Welcome back to your pharmacy command center.

{{ now()->format('d M, Y') }}
New Sale

Total Products

{{ App\Models\Product::count() }}

Sales Analytics
Revenue Overview

Invoice Due

MWK {{ number_format($invoiceDue, 0) }}

Total Purchase

MWK {{ number_format($totalPurchase, 0) }}

Ready to sell?

Open the POS terminal to process new transactions quickly.

Open POS Terminal
@endsection @section('scripts') @endsection