@extends('layouts.admin') @section('title', $supermarket->name . ' - Supermarket Dashboard') @section('content')
Supermarket Management Dashboard
| Owner: | {{ $supermarket->user->name }} |
| Email: | {{ $supermarket->user->email }} |
| Address: | {{ $supermarket->address }} |
| Phone: | {{ $supermarket->phone }} |
| Store Size: | {{ ucfirst($supermarket->supermarketDetail->store_size ?? 'Not Set') }} |
| Total Aisles: | {{ $supermarket->supermarketDetail->total_aisles }} |
| Product | Price | Stock | Status |
|---|---|---|---|
|
{{ Str::limit($product->product_name, 20) }}
{{ $product->sku }}
|
${{ number_format($product->selling_price, 2) }} | {{ $product->stock_quantity }} | @if($product->stock_quantity <= 0) Out @elseif($product->stock_quantity <= $product->minimum_stock) Low @else OK @endif |
No products added yet
| Product | Current Stock | Minimum Stock | Last Updated |
|---|---|---|---|
|
{{ $product->product_name }}
{{ $product->sku }}
|
{{ $product->stock_quantity }} | {{ $product->minimum_stock }} | {{ $product->updated_at->diffForHumans() }} |