@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