@extends('layouts.users.app') @section('content')
{{-- Breadcrumb Component --}}

{{__('Used Machine Details')}}

{{ __('Name') }} {{ $machine->name }}
{{ __('Brand') }} {{ $machine->brand }}
{{ __('Model') }} {{ $machine->model }}
{{ __('Year') }} {{ $machine->year }}
{{ __('Type of Machine') }} {{ $machine->type_of_machine }}
{{ __('Status') }} {{ $machine->sale_status->label() }}
@if(!empty($machine->general_information)) @foreach(json_decode($machine->general_information, true) as $key => $value) @endforeach @endif @if(!empty($machine->technical_details)) @foreach(json_decode($machine->technical_details, true) as $key => $value) @endforeach @endif @if(!empty($machine->formatted_pricing_details)) @foreach($machine->formatted_pricing_details as $key => $value) @endforeach @endif @if(!empty($machine->additional_information)) @endif
{{ __('General Information') }}
{{ __(str_replace('_', ' ', $key)) }} {{ $value }}
{{ __('Technical Details') }}
{{ __(str_replace('_', ' ', $key)) }} {{ $value }}
{{ __('Pricing Details') }}
{{ __(str_replace('_', ' ', $key)) }} {{ $value }}
{{ __('Additional Information') }}
{!! $machine->additional_information !!}
@if($machine->media && $machine->media->isNotEmpty())
@if($images->isNotEmpty())

{{ __('Images') }}

@foreach($images as $media)
{{-- Enlace GLightbox para la galerĂ­a --}} Machine Image
@endforeach
@endif @if($video)

{{ __('Video') }}

@endif
@endif @if($machine->promo_flyer_path)

{{ __('Promotional Flyer') }}

@endif
@endsection @push('styles') @endpush @push('scripts') @endpush