@extends('main.layouts.app') @section('content')

Inventory

@if ($product->isNotEmpty()) @foreach ($product as $data) @endforeach @endif
ID Quantity Product Name Action
{{ $data->id }} {{ $data->quantity }} {{ $data->product_title }}

Purchase List

@if ($Purchaselog->isNotEmpty()) @foreach ($Purchaselog as $row) @endforeach @endif
ID Product Name Billing Number HSN Quantity
{{ $i }} {{ $row->product_title }} {{ $row->billing_number }} {{ $row->hsn }} {{ $row->quantity }}
{{-- --}} @endsection @section('scripts') @endsection