@extends('layouts.guest.general') @section('main_content')

Sale of - {{ $machineName }}

{{ $machineName }}

{{ $machineName }}
{{ __('messages.details') }}
  • {{ __('Brand') }}: {{ $machine->brand ?? 'N/A' }}
  • {{ __('Model') }}: {{ $machine->model ?? 'N/A' }}
  • {{ __('Year') }}: {{ $machine->year ?? 'N/A' }}
  • {{ __('Technology') }}: {{ __($machine->type_of_machine ?? 'N/A') }}

{{ $machineName }}

{!! $machine->description !!}
@if ($machine->secondaryImages->isNotEmpty()) @endif @if ($hasFeatures)

{{ __('Technical Specifications') }}

@foreach ($technicalSpecifications as $sectionKey => $sectionData)
{{ Lang::has("used_machine.sections.$sectionKey") ? __("used_machine.sections.$sectionKey") : str_replace('_', ' ', Str::snake($sectionKey)) }}
    @foreach ($sectionData as $key => $val) @if (!is_array($val) && $val !== null && $val !== '')
  • {{ Lang::has("used_machine.$sectionKey.$key") ? __("used_machine.$sectionKey.$key") : str_replace('_', ' ', $key) }} : @if (is_bool($val)) {{ $val ? __('Yes') : __('No') }} @else {{ __($val) }} @endif
  • @endif @endforeach
@endforeach @if (!empty($extraFields)) @foreach ($extraFields as $section => $fields) @if (!empty($fields))
{{ str_replace('_', ' ', $section) }}
    @foreach ($fields as $field)
  • {{ $field['key'] }}: {{ __($field['value']) }}
  • @endforeach
@endif @endforeach @endif @foreach ($customSections as $cSec) @if (!empty($cSec['fields']))
{{ $cSec['name'] }}
    @foreach ($cSec['fields'] as $field)
  • {{ $field['key'] }}: {{ __($field['value']) }}
  • @endforeach
@endif @endforeach
@endif @if ($video) @endif @if (!empty($other['additional_information']))

{{ __('Additional Information') }}

{!! nl2br(e($other['additional_information'])) !!}

@endif
@livewire('contact-form.catalogue-contact-form', [ 'product_name' => $machineName, 'product_type' => 'Used machine', 'dataDivision' => $division, 'isUsedMachine' => true, 'product_id' => $machine->id, ]) @endsection @push('styles') @endpush