@extends('admin.layouts.app') @section('panel')
  • @lang('License Type') @if ($product->license == Status::PERSONAL_LICENSE) @lang('Personal License') @else @lang('Commercial License') @endif
  • @lang('Purchase Code') {{ $product->purchase_code }}
  • @if (!$product->is_free)
  • @lang('Price') {{ showAmount($product->product_price) }}
  • @else
  • @lang('Price') @lang('Free')
  • @endif
  • @lang('Author')
    {{ __(@$product->product->author->fullname) }}
    {{ @$product->product->author->username }}
  • @lang('Buyer')
    {{ __(@$product->buyer->fullname) }}
    {{ @$product->buyer->username }}
  • @lang('Author Fee') {{ showAmount($product->seller_fee) }}
  • @lang('Buyer Fee') {{ showAmount($product->buyer_fee) }}
  • @lang('Refunded') @php echo $product->refundedBadge; @endphp
  • @lang('Demo Link') {{ @$product->product->demo_url }}
  • @foreach ($product->product->attribute_info as $info)
  • {{ __($info->name) }} @if (is_array($info->value))
    @foreach ($info->value as $val) {{ __($val) }} @if (!$loop->last) , @endif @endforeach
    @else {{ __(@$info->value) }} @endif
  • @endforeach
  • @lang('Tags')
    @forelse ($product->product->tags ?? [] as $tag) {{ __($tag) }} @empty @lang('No Tags') @endforelse
  • @lang('Sale Date')
    {{ showDateTime($product->created_at) }}
@endsection