@extends('layouts.app') @section('title') Order Details | Sanlive Pharmarcy @endsection @section('head') @endsection @section('content') @section('styles') @endsection
@include('includes.accountSidebar')
{{_('<< Order Details ')}}      

Order No: {{$orders->order_no}}
Placed On: {{$orders->created_at}}
Total Amount: {{moneyFormat($orders->payable)}}

Items in Your Order @forelse($order_items as $order) @empty @endforelse

Payment Information


Payment Method: {{$orders->payment_method}}
    Payment Details
  • Items Total: {{isset($orders->payable)?moneyFormat($orders->payable):moneyFormat('0')}}
  • Delivery Fee: {{isset($delivery->fee)?moneyFormat($delivery->fee):moneyFormat('0')}}
  • Payment Ref: {{isset($order->payment_ref)?$order->payment_ref:null}}
  • Payment Channel: {{isset($order->channel)?$order->channel:null}}

Shipping Information


Delivery Method: {{$orders->shipping_method == 'home_delivery' ? "Home delivery":"Pick-up Delivery"}}
  • {{isset($shipping->name)?$shipping->name:''}}
  • {{isset($shipping->phone)?$shipping->phone:''}}
  • {{isset($shipping->address)?$shipping->address:''}}
  • {{$shipping->city.','.$shipping->city.','.$shipping->state.','.$shipping->country}}
@endsection @section('script') @endsection