@extends('shop/layout') @section('shop')
@foreach($order->lines as $line) @endforeach
  Product Qty Price
{{$line->product->title}} {{$line->qty}} {{$line->price}}{{$order->currency}}
Total : {{$order->total}}{{$order->currency}}
{{ $order->datas['cryptoPrice']}} {{$order->datas['cryptoCurrency']}}
@if($order->status >= \App\Models\Order::statusWaiting) {{$address}}
{{ucfirst($tokenLong)}} transaction take time, we are waiting 30 minutes before cancel the order
@elseif($order->status == \App\Models\Order::statusCanceled)
Your order as been canceled
@endif
@stop