@extends('layouts.app') @section('title', 'Products') @section('breadcrumb') @endsection @section('content')
Type to search instantly
@forelse($products as $product) @empty @endforelse
Product Item Code Category Cost Price Selling Price Stock Status Actions
@if($product->image) {{ $product->name }} @else
@endif
{{ $product->name }}
{{ $product->unit }}
{{ $product->sku ?? '-' }}
@if($product->barcode)
{{ $product->barcode }}
@endif
{{ $product->category?->name ?? '—' }} Rs. {{ number_format($product->cost_price, 2) }} Rs. {{ number_format($product->selling_price, 2) }}
{{ number_format($product->stock_quantity, 0) }} {{ $product->unit }}
{{ $product->is_active ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
No products found
{{ $products->links() }}
@endsection @push('scripts') @endpush