@extends('index') @section('main')
@if(!empty($page->extra_i18n->products->items))
@foreach($page->extra_i18n->products->items as $item)
@php($file = new FileModel(['path' => $item->image[0]->path ?? '', 'data' => $item->image[0]->data ?? '']))
@php($file = new FileModel(['path' => $item->image_mobile[0]->path ?? '', 'data' => $item->image_mobile[0]->data ?? ''])) {{ $file->data->name ?? '' }}
{!! $item->model ?? '' !!}
{!! $item->name ?? '' !!} {!! $item->type ?? '' !!}

{!! $item->text ?? '' !!}

@if(!empty($item->text) && !empty($item->url)) @endif
@endforeach
@endif @if(!empty($page->extra_i18n->gift->show))
{!! nl2br($page->extra_i18n->gift->header ?? '') !!}

{!! nl2br($page->extra_i18n->gift->text ?? '') !!}

@if(!empty($page->extra_i18n->gift->button) && !empty($page->extra_i18n->gift->url))

{!! $page->extra_i18n->gift->button !!}

@endif
@php($file = new FileModel(['path' => $page->extra_i18n->gift->image[0]->path ?? '', 'data' => $page->extra_i18n->gift->image[0]->data ?? '']))
@endif @if(!empty($page->extra_i18n->gallery->images))
@foreach($page->extra_i18n->gallery->images as $image) @php($file = new FileModel(['path' => $image->path ?? '', 'data' => $image->data ?? '']))
@endforeach
@endif @if($opinions->isNotEmpty())
@endif @if(!empty($page->extra_i18n->icons->items))

{!! nl2br($page->extra_i18n->icons->header ?? '') !!}

@foreach($page->extra_i18n->icons->items as $item)
{!! nl2br($item->text ?? '') !!}
@endforeach
@endif @if(!empty($page->extra_i18n->icons->button) && !empty($page->extra_i18n->icons->url))
@endif
{!! $page->body !!}
@endsection