{{__('Order')}} {{ $order->order_number }}
{{__('Placed on')}} {{ $order->created_at->format('d.m.Y H:i') }}
{{ $order->status_text }}
{{ $order->payment_status_text }}
{{ $order->payment_status_text }}
{{__('Delivered on')}} {{ $order->delivered_at->format('d.m.Y H:i') }}
@endif
@if($order->notes)
{{__('Notes')}}: {{ $order->notes }}
@endif
{{__('Product Information')}}
@if($order->product && $order->product->image_url)
@else
@endif
{{ $order->product_name }}
{{__('Unit Price')}}:
{{ number_format($order->product_price, 2) }}₺
{{__('Quantity')}}:
{{ $order->quantity }}
{{__('Total Amount')}}:
{{ $order->formatted_total }}
@if($order->product)
{{__('Product Type')}}:
{{ $order->product->is_digital ? __('Digital') : __('Physical') }}
@endif
{{__('Your Digital Content')}}
@if(is_array($order->delivery_data) && isset($order->delivery_data['content']))
@if(is_array($order->delivery_data['content']))
@foreach($order->delivery_data['content'] as $key => $value)
@endif
@if(isset($order->delivery_data['instructions']))
{{ ucfirst($key) }}:
@endforeach
@else
{{ $value }}
{{ $order->delivery_data['content'] }}
{{__('Instructions')}}:
@endif
@else
{{ $order->delivery_data['instructions'] }}
{{__('Digital content will be available once the order is completed.')}}
@endif
{{__('Order Actions')}}
{{__('You can cancel this order and get a full refund to your account balance.')}}
{{__('Order Summary')}}
{{__('Order Number')}}:
{{ $order->order_number }}
{{__('Order Date')}}:
{{ $order->created_at->format('d.m.Y') }}
{{__('Order Time')}}:
{{ $order->created_at->format('H:i') }}
@if($order->delivered_at)
{{__('Delivered')}}:
{{ $order->delivered_at->format('d.m.Y H:i') }}
@endif
{{__('Subtotal')}}:
{{ $order->formatted_total }}
{{__('Payment Method')}}:
{{__('Account Balance')}}
{{__('Total')}}:
{{ $order->formatted_total }}
{{__('Customer Information')}}
{{__('Name')}}:
{{ $order->user->account_holder ?? $order->user->name }}
{{__('Email')}}:
{{ $order->user->email }}
@if($order->user->phone)
{{__('Phone')}}:
{{ $order->user->phone }}
@endif
{{__('Need Help?')}}
{{__('If you have any questions about your order, please contact our support team.')}}
{{__('Contact Support')}}