@extends('layouts.app') @section('title', $title) @section('description', $description) @section('content')
@if ($product->featured_image) @endif
{!! $product->{'description_' . app()->getLocale()} !!}
@if (!empty($product->features))

{{ __('Key Features') }}

    @foreach ($product->features as $feature)
  • {{ $feature }}
  • @endforeach
@endif @if (!empty($product->specifications))

{{ __('Specifications') }}

@foreach ($product->specifications as $key => $value)
{{ $key }}: {{ $value }}
@endforeach
@endif @if (!empty($product->pricing))

{{ __('Pricing') }}

@foreach ($product->pricing as $model)

{{ $model['name'] ?? '' }}

{{ $model['description'] ?? '' }}

{{ $model['price'] ?? '' }}
@endforeach
@endif @if (!empty($product->technologies))

{{ __('Technologies Used') }}

@foreach ($product->technologies as $tech) {{ $tech }} @endforeach
@endif
@if($product->demo_url) {{ __('View Demo') }} @endif @if($product->download_url) {{ __('Download') }} @endif @if($product->documentation_url) {{ __('Documentation') }} @endif
@if (!empty($product->screenshots)) @endif
@if ($relatedProducts->count() > 0) @endif @endsection