@extends("layout.app") @section("content")

الطلب {{$order->track_id}}


@if($order->payment_method=="cash" && $order->status->code=="pending")

تم إستلام طلبك بنجاح، سيتم التواصل معك للتأكيد

الرجوع للصفحه الرئيسية طلباتي @elseif($order->payment_method!="cash" && $order->status->code=="preparing-payment")

قم بالدفع من هنا

@php $interest =(($order->total*1.034)+1.20) - $order->total; $total = $interest + $order->total; @endphp

قيمه الطلب : {{round($order->total)}} شيكل

عموله دفع عن طريق بي بال : {{round($interest)}} شيكل

المجموع : {{round($total)}} شيكل

@elseif($order->payment_method!="cash" && $order->status->code=="preparing")

تم استلام المبلغ بنجاح، سيتم تجهيز طلبك وارساله في اسرع وقت خلال اوقات الدوام.

@endif
@endsection @section("scripts") @if($order->payment_method!="cash" && $order->status->code=="preparing-payment") @endif @endsection