@extends('layouts.app') @section('content')
@if($new->mobile_image) {{-- Imagen para móviles --}} @endif {{-- Imagen para desktop (por defecto) --}} @php $title = $new->getTranslation('title', app()->getLocale(), false); @endphp @if($new->desktop_image) {{ $title ?? '' }} @endif @if($title)

{{ $title }}

@endif
@php $description = $new->getTranslation('description', app()->getLocale(), false); @endphp @if($description)
{!! $description !!}
@endif @endsection