Ficha Técnica de Máquina Usada

{{ $machine->name }}

{{-- ============================= --}} {{-- INFORMACIÓN PRINCIPAL --}} {{-- ============================= --}}
Información Básica
Nombre {{ $machine->name }}
Marca {{ $machine->brand }}
Modelo {{ $machine->model }}
Año {{ $machine->year }}
Tipo de Máquina {{ $machine->type_of_machine }}
Estado de Venta {{ $machine->sale_status->label() }}
{{-- ============================= --}} {{-- INFORMACIÓN GENERAL --}} {{-- ============================= --}} @if(!empty($machine->general_information))
Información General
@foreach(json_decode($machine->general_information, true) as $key => $value) @endforeach
{{ ucwords(str_replace('_', ' ', $key)) }} {{ $value }}
@endif {{-- ============================= --}} {{-- DETALLES TÉCNICOS --}} {{-- ============================= --}} @if(!empty($machine->technical_details))
Detalles Técnicos
@foreach(json_decode($machine->technical_details, true) as $key => $value) @endforeach
{{ ucwords(str_replace('_', ' ', $key)) }} {{ $value }}
@endif {{-- ============================= --}} {{-- PRECIOS --}} {{-- ============================= --}} @if(!empty($machine->formatted_pricing_details))
Detalles de Precios
@foreach($machine->formatted_pricing_details as $key => $value) @endforeach
{{ ucwords(str_replace('_', ' ', $key)) }} {{ $value }}
@endif {{-- ============================= --}} {{-- INFORMACIÓN ADICIONAL --}} {{-- ============================= --}} @if(!empty($machine->additional_information))
Información Adicional
{!! $machine->additional_information !!}
@endif