@extends('admin.layouts.app') @section('title', 'POS Products') @section('content')

POS Products

Manage products for Point of Sale

@forelse($products as $product) @empty @endforelse
Product Outlet Category Price Stock Inventory Link Actions
{{ $product->name }}
@if($product->sku)
SKU: {{ $product->sku }}
@endif
{{ $product->outlet->name ?? '-' }} {{ $product->category ?? '-' }} ₦{{ number_format($product->price, 2) }} @if($product->track_stock) @if($product->getCurrentStock() <= $product->low_stock_threshold) {{ $product->getCurrentStock() }} @else {{ $product->getCurrentStock() }} @endif @else No tracking @endif @if($product->inventoryItem) {{ Str::limit($product->inventoryItem->name, 15) }} @else Not linked @endif
@csrf @method('DELETE')

No products found for this outlet.

{{ $products->withQueryString()->links() }}
@push('scripts') @endpush @endsection