@extends('layouts.default') @section('title') @endsection @section('header-style') @endsection @section('content')
@if(isset($product_orders)) {{-- @json($product_orders) --}}

File Upload List


@if(Session::has('message')) @endif
@if(isset($product_orders)) @foreach($product_orders as $product_order) {{----}} {{----}} @endforeach @endif
SL Order Id Order Date Customer Mobile Payment Date Delivery Date Requested Product Action
{{$loop->iteration}} {{$product_order->product_order_id}} {{ date( 'Y-m-d' , strtotime($product_order->order_date) )}} {{$product_order->customer->customer_name}} {{-- {{$product_order->customer->customer_name}}--}} {{$product_order->customer->mobile_number}} {{ date( 'Y-m-d' , strtotime($product_order->payment_completed_date) )}} {{$product_order->confirmed_yn == 'Y'?'Yes':'No'}} @if(isset($product_order->tentative_confirmation)) {{ date( 'Y-m-d' , strtotime($product_order->tentative_confirmation) )}} @endif @if(isset($product_order->tentative_confirmation)) {{ date( 'Y-m-d' , strtotime($product_order->tentative_confirmation) )}} @endif @if(isset($product_order->product_order_detail) && count($product_order->product_order_detail) > 0) {{count($product_order->product_order_detail)}} Product Requested @endif @if($product_order->file_upload_complete_yn == 'Y') @else @endif
@endif
@endsection @section('footer-script') @endsection