@extends('admin.layouts.app') @section('panel')
@lang('Order Details')
  • @lang('Order Number') #{{$order->order_number}}
  • @lang('User') {{$order->user->username}}
  • @lang('Email') {{$order->user->email}}
  • @lang('Phone Number') {{$order->user->mobile}}
@lang('Title') @lang('Price') @lang('File')
{{__($order->product->title)}} {{__($general->cur_sym)}}{{showAmount($order->price)}}
({{$order->license_type}})
@php $product = $order->product; @endphp @if ($product->file && !$product->external_link) {{-- Only local file download --}} @elseif (!$product->file && $product->external_link) {{-- Only external link --}} @else {{-- Both file and external link available --}} @endif
@endsection