@extends('employee.layouts')
@section('title', 'Products')
@section('header')
@endsection
@section('content')
Products
{{--
Add Product
--}}
{{--
user()->is_gst ? 'checked' : '' }}>
--}}
{{-- --}}
| S/N |
CATEGORY |
SUB CATEGORY |
BRAND |
PRODUCT ID |
HSN CODE |
TITLE |
{{-- PURCHASE PRICE | --}}
SALES PRICE |
S-WALLET |
STOCK |
{{-- BARCODE 1 |
BARCODE 2 | --}}
{{-- ACTION | --}}
@foreach ($products as $product)
| {{ $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 ?? '' }} | --}}
{{--
| --}}
@endforeach
{{-- @foreach ($products as $product)
Are You Sure?
Are you sure you want to delete
this product: {{ $product->title }}?
@endforeach --}}
@endsection
@section('footer')
{{-- --}}
@endsection