@extends('layouts.default') @section('title') @endsection @section('header-style') @endsection @section('content')
| 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 |