@if($product->authors)
{{ __("Authors") }}
{{ $product->authors }}
@endif
@if($product->release_date)
{{ __("Release date") }}
{{ $product->release_date }}
@endif
@if($product->last_update)
{{ __("Last update") }}
{{ $product->last_update }}
@endif
@if($product->version)
{{ __("Version") }}
{{ $product->version }}
@endif
@if($product->words)
{{ __("Words") }}
{{ $product->words }}
@endif
@if($product->label)
{{ __("Label") }}
{{ $product->label }}
@endif
@if($product->included_files)
{{ __("Included files") }}
{{ $product->included_files }}
@endif
@if($product->language)
{{ __("Language") }}
{{ $product->language }}
@endif
@if($product->formats)
{{ __("Formats") }}
{{ $product->formats }}
@endif
@if($product->bpm)
{{ __("BPM") }}
{{ $product->bpm }}
@endif
@if($product->high_resolution)
{{ __("High resolution") }}
{{ $product->high_resolution ? __('Yes') : __('No') }}
@endif
@if($product->compatible_browsers)
{{ __("Compatible browsers") }}
{{ $product->compatible_browsers }}
@endif
@if($product->compatible_os)
{{ __("Compatible os") }}
{{ $product->compatible_os }}
@endif
@if($product->db)
{{ __("Database") }}
{{ $product->db }}
@endif
@if($product->software)
{{ __("Software") }}
{{ $product->software }}
@endif
@if($product->bit_rate)
{{ __("Bit rate") }}
320Kb
@endif
@foreach($product->additional_fields ?? [] as $additional_field)
{{ __($additional_field->_name_) }}
{{ $additional_field->_value_ }}
@endforeach