@extends('layouts.admin') @section('content')
Orders Details
@if(count($ordersItems) > 0) @foreach ($ordersItems as $sp) @endforeach @else @endif
Order No Product Name Price Quantity Product Prescription Created At
{{$sp->Order_no}} {{$sp->product_name}} {{moneyFormat($sp->payable,2)}} {{$sp->qty}} @if($sp->product_prescription) Download @endif {{$sp->created_at->format('d/m/y h:ma')}}
No data available
@endsection