@extends('main.layouts.app')
@section('content')
ID |
Quantity |
Product Name |
Action |
@if ($product->isNotEmpty())
@foreach ($product as $data)
{{ $data->id }} |
{{ $data->quantity }} |
{{ $data->product_title }} |
|
@endforeach
@endif
ID |
Product Name |
Billing Number |
HSN |
Quantity |
@if ($Purchaselog->isNotEmpty())
@foreach ($Purchaselog as $row)
{{ $i }} |
{{ $row->product_title }} |
{{ $row->billing_number }} |
{{ $row->hsn }} |
{{ $row->quantity }} |
@endforeach
@endif
{{-- --}}
@endsection
@section('scripts')
@endsection