@extends('layouts.app') @section('title','Products')@section('page-title','Products') @section('content')
@if(auth()->user()->isAdmin())
@endif
Reset
@if(auth()->user()->isAdmin())@endif @forelse($products as $product) @if(auth()->user()->isAdmin())@endif @empty @endforelse
SKUProductBranchCategoryStockPrice (USD)Actions
{{ $product->sku }}
{{ $product->name }}
@if($product->isOutOfStock())Out of Stock @elseif($product->isLowStock())Low Stock@endif
{{ $product->branch?->code ?? '—' }}{{ $product->category?->name ?? '—' }} {{ number_format($product->quantity_in_stock) }} ${{ number_format($product->selling_price_usd, 4) }}

No products found.

@if($products->hasPages()) @endif
@endsection