@extends('layouts.external') @section('title') @endsection @section('header-style') @endsection @section('content')
@if(isset($product_orders))

Product Download List


@if(Session::has('message')) @endif
@if(isset($product_orders) && count($product_orders) > 0) @foreach($product_orders as $product_order) @endforeach @else @endif
SL Order Id Order Date Payment Date Product Detail
{{$loop->iteration}} {{$product_order->product_order_id}} {{ date( 'Y-m-d' , strtotime($product_order->order_date) )}} {{ date( 'Y-m-d' , strtotime($product_order->payment_completed_date) )}} @if(isset($product_order->product_order_details)) @foreach($product_order->product_order_details as $product_order_detail) @endforeach @endif
Product Description Format File Name Uploaded By Download
{{substr($product_order_detail->description, 0, 15)}} {{$product_order_detail->file_format_name}} {{substr($product_order_detail->file_name, 0, 10)}} {{$product_order_detail->emp_name}} @if(isset($product_order_detail->file_info_id)) Download @else {{substr('No file to download', 0, 10)}} @endif
No product to download
@endif
@endsection @section('footer-script') @endsection