{{__('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))
|
{{ __('General Information') }}
|
@foreach(json_decode($machine->general_information, true) as $key => $value)
| {{ __(str_replace('_', ' ', $key)) }} |
{{ $value }} |
@endforeach
@endif
@if(!empty($machine->technical_details))
|
{{ __('Technical Details') }}
|
@foreach(json_decode($machine->technical_details, true) as $key => $value)
| {{ __(str_replace('_', ' ', $key)) }} |
{{ $value }} |
@endforeach
@endif
@if(!empty($machine->formatted_pricing_details))
|
{{ __('Pricing Details') }}
|
@foreach($machine->formatted_pricing_details as $key => $value)
| {{ __(str_replace('_', ' ', $key)) }} |
{{ $value }} |
@endforeach
@endif
@if(!empty($machine->additional_information))
|
{{ __('Additional Information') }}
|
| {!! $machine->additional_information !!} |
@endif
@if($machine->media && $machine->media->isNotEmpty())
@if($images->isNotEmpty())
{{ __('Images') }}
@foreach($images as $media)
{{-- Enlace GLightbox para la galerĂa --}}
@endforeach
@endif
@if($video)
{{ __('Video') }}
@endif
@endif
@if($machine->promo_flyer_path)
{{ __('Promotional Flyer') }}
@endif