@extends('admin.layouts') @section('title', 'Products') @section('header') @endsection @section('content') @php $totalPurchaseValue = 0; $totalSalesValue = 0; @endphp

Products

Add Product
user()->is_gst ? 'checked' : '' }}>
Total Purchase Value: {{ number_format($totalPurchaseValue, 2) }}
Total Sales Value: {{ number_format($totalSalesValue, 2) }}
S/N CATEGORY SUB CATEGORY AGENCY PRODUCT ID HSN CODE TITLE PURCHASE PRICE SALES PRICE S-WALLET STOCK Variant ACTION
@foreach ($products as $product) @endforeach
@endsection @section('footer') @section('footer') @endsection {{-- --}} @endsection