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

Purchase Page

{{-- --}} @if ($product->isNotEmpty()) @foreach ($product as $data) {{-- --}} {{-- @foreach ($dataType->browseRows as $row) --}} {{-- --}} {{-- {{-- --}} {{-- --}} {{-- @endforeach --}} @endforeach @endif
IDUser IDQuantity Product Name
{{ $data->id }}{{$data->user_id}}{{ $data->quantity }} {{ $data->product_title }}{{$data->billing_address}} {{$data->billing_city}} Rs.{{($data->billing_subtotal)}}{{$data->billing_tax/100}}Rs.{{($data->billing_total)}} {{$data->shipped==0?'No':'Yes'}}

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