@extends('website.layouts.globalLayout') @section('content') @php $order = orders()->where('reference', $reference)->first(); @endphp

Félicitation. Votre commande a bien été passé

Le livreur vous appelera dans un moment avant de quitter

Détails de votre commande

@foreach (carts()->where('patient_order_id', $order->id) as $cart) @endforeach
Médicaments Total

{{$cart->pharmacyDrug->speciality_name}}
{{$cart->pharmacyDrug->price}} Fcfa x {{$cart->qte}} Pharmacie: ---------

{{$cart->total}} Fcfa
Sub Total: {{$order->total}} Fcfa
Frais de livraison Standard: 1000 Fcfa
Payer par {{$order->patientPayment->method}}
Total: {{$order->total}} Fcfa
@include('website.includes.part.footer') @endsection