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

Products

Add Product
@forelse($products as $product) @empty @endforelse
Image Product Category Size Price Qty Actions
@if($product->image_url) {{ $product->name }} {{ $product->name }} @else @endif {{ $product->name }} @if($product->barcode)
{{ $product->barcode }} @endif
{{ $product->category_name }} {{ $product->size ?? '—' }} {{ number_format($product->selling_price, 2) }} {{ $product->quantity }} View Edit
@csrf @method('DELETE')
No products yet. Add one.
@if($products->hasPages())
{{ $products->links() }}
@endif
@endsection @push('scripts') @endpush @push('styles') @endpush