@extends('layouts.app') @section('title', 'Dashboard') @section('page_title', 'Business Overview') @section('content')
| Invoice # | Customer | Amount | Status |
|---|---|---|---|
| {{ $inv->invoice_number }} | {{ $inv->client->full_name }} | {{ number_format($inv->total_amount) }} UGX | {{ ucfirst($inv->status) }} |
| No invoices generated yet. | |||
| Variant Name | SKU | Stock Qty | Status |
|---|---|---|---|
| {{ $v->variant_name }} | {{ $v->sku }} |
{{ $v->stock_qty }} | @if($v->isLowStock()) Low Stock @else In Stock @endif |
| No product variants registered. | |||