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

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


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

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

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

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

@if(\App\Models\Settings::where("key","bop-calculate-fees")->first()->value=="no") @php $interest =0; $total = $interest+$order->total; @endphp @else @php $interest =($order->total*1.03)-$order->total; $total = $interest+$order->total; @endphp @endif @if(\App\Models\Settings::where("key","bop-calculate-fees")->first()->value=="yes")

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

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

@endif

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

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

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

@endif
@endsection @section("scripts") @endsection