@extends('gorevsitesi.layouts.app') @section('title', __('Order Details')) @section('content')

@lang('Order Details') #{{ $order->order_number }}


@lang('Product Information')
{{ $order->product_name }}

@lang('Unit Price'): {{ $order->product_price }} ₺

@lang('Quantity'): {{ $order->quantity }}

@lang('Total Amount'): {{ $order->formatted_total }}

@if($order->product_id && $order->product) @lang('View Product') @else @lang('Product no longer available') @endif
@lang('Order Information')

@lang('Order Number'): {{ $order->order_number }}

@lang('Order Date'): {{ $order->created_at }}

@lang('Status'): {{ $order->status_text }}

@lang('Payment Status'): {{ $order->payment_status_text }}

@if($order->delivered_at)

@lang('Delivered on'): {{ $order->delivered_at }}

@endif @if($order->notes)

@lang('Notes'): {{ $order->notes }}

@endif
@lang('Delivery Information')
@if($order->product_data && $order->product_data['digital_content'])

@lang('Digital Content'):

{{ $order->product_data['digital_content'] }}
@if($order->product_data['instructions'])

@lang('Instructions'):

{{ $order->product_data['instructions'] }}
@endif @else

@lang('No delivery information available yet.')

@endif
@if($order->can_be_cancelled) @endif @lang('Back to My Orders')
@push('scripts') @endpush @endsection