@extends('layouts.base') @section('title', 'Products') @section('content')
All Products
@foreach ($products as $key => $product) @endforeach
Id No Name of Item Maker Model Prob Quantity Purchase Price Total Price Image Action
{{ ++$key }} {{ $product->code }} {{ $product->name }} {{ $product->maker }} {{ $product->modal->name }} {{ $product->prob }} {{ number_format($product->quantity) }} Rs {{ number_format($product->PurchasePrice) }} Rs {{ number_format($product->SellPrice) }} Pro Image
  • @csrf

Purchase Price Rs: 0

Total Price Rs: 0

@endsection