@extends('front.layouts.main') @section('header') @endsection @section('content')


@foreach($data as $key => $listing) @endforeach
ID Product Quantity Liable Reason
{{$key + 1}} @php $name = DB::table('main_products')->where('m_barcode',$listing->product_code)->first(); @endphp @if($name) {{$name->name}} @endif {{ $listing->quantity }} {{ $listing->liable }} {{ $listing->reason }}
@endsection @section('scripts') @endsection @section('js') @endsection