@extends('employee.layouts') @section('title', 'Products') @section('header') @endsection @section('content')

Products

{{-- Add Product --}} {{--
user()->is_gst ? 'checked' : '' }}>
--}}
{{-- --}}
{{-- --}} {{-- --}} {{-- --}} @foreach ($products as $product) {{-- --}} {{-- --}} {{-- --}} @endforeach
S/N CATEGORY SUB CATEGORY BRAND PRODUCT ID HSN CODE TITLEPURCHASE PRICESALES PRICE S-WALLET STOCKBARCODE 1 BARCODE 2ACTION
{{ $loop->iteration }} {{ $product->category_name ?? 'N/A' }} {{ $product->subcategory_name ?? 'N/A' }} {{ $product->brand ?? 'N/A' }} {{ $product->product_id ?? 'N/A' }} {{ $product->hsn_code ?? 'N/A' }} {{ $product->title ?? 'N/A' }} {{ number_format($product->purchase_price ?? 0, 2) }}{{ number_format($product->sell_price ?? 0, 2) }} {{ $product->shop_wallet ?? 'N/A' }} {{ $product->stock ?? '0' }}{{ $product->barcode1 ?? '' }} {{ $product->barcode2 ?? '' }}
{{-- @foreach ($products as $product) @endforeach --}}
@endsection @section('footer') {{-- --}} @endsection