@extends('layouts.admin') @section('title', 'Dashboard') @section('subtitle', now()->format('l, F d, Y')) @section('content')
Today's Sales
LKR {{ number_format($todaySales, 2) }}
Invoices
{{ number_format($todayInvoices) }}
Today's Profit
LKR {{ number_format($todayProfit, 2) }}
This Month
LKR {{ number_format($monthSales, 2) }}
{{ $stock->product->name_en }}
Min: {{ $stock->product->min_stock }}
โ
All stock levels OK
| Invoice # | Cashier | Items | Total | Time | Status |
|---|---|---|---|---|---|
| {{ $invoice->invoice_number }} | {{ $invoice->user->name }} | {{ $invoice->items_count ?? $invoice->items->count() }} items | LKR {{ number_format($invoice->total, 2) }} | {{ $invoice->created_at->format('H:i') }} | @if($invoice->status === 'completed') Paid @else {{ ucfirst($invoice->status) }} @endif |
๐
No transactions yet