@extends('layouts.app') @section('content') @include('partials.hero-stacked') @include('partials.products-grid') @if($activeCampaigns->isNotEmpty())
@endif @php $wholesale = match(current_locale()) { 'en' => [ 'eyebrow' => 'WHOLESALE PARTNERSHIP', 'title' => 'Wholesale partnership for stores', 'text' => 'Want to offer BERNESSO products in your store? Join us. We will prepare a tailored offer with wholesale prices, reliable supply, and sales support.', 'button' => 'APPLY FOR PARTNERSHIP', 'benefits' => [ ['title' => 'Special wholesale prices', 'icon' => 'tag'], ['title' => 'Stable and fast supply', 'icon' => 'box'], ['title' => 'Quality product guarantee', 'icon' => 'award'], ['title' => 'Sales and marketing support', 'icon' => 'support'], ], 'stats' => [ ['value' => '100+', 'label' => 'Partner stores', 'icon' => 'store'], ['value' => '20+', 'label' => 'Cities and regions', 'icon' => 'location'], ['value' => 'Reliable', 'label' => 'long-term partnership', 'icon' => 'handshake'], ['value' => 'Official warranty', 'label' => 'and service support', 'icon' => 'shield'], ], ], 'ru' => [ 'eyebrow' => 'ОПТОВОЕ СОТРУДНИЧЕСТВО', 'title' => 'Оптовое сотрудничество для магазинов', 'text' => 'Хотите представить продукцию BERNESSO в своем магазине? Присоединяйтесь к нам. Мы подготовим предложение с оптовыми ценами, стабильными поставками и поддержкой продаж.', 'button' => 'ЗАЯВКА НА СОТРУДНИЧЕСТВО', 'benefits' => [ ['title' => 'Специальные оптовые цены', 'icon' => 'tag'], ['title' => 'Стабильные и быстрые поставки', 'icon' => 'box'], ['title' => 'Гарантия качества продукции', 'icon' => 'award'], ['title' => 'Поддержка продаж и маркетинга', 'icon' => 'support'], ], 'stats' => [ ['value' => '100+', 'label' => 'Магазинов-партнеров', 'icon' => 'store'], ['value' => '20+', 'label' => 'Городов и регионов', 'icon' => 'location'], ['value' => 'Надежное', 'label' => 'долгосрочное партнерство', 'icon' => 'handshake'], ['value' => 'Официальная гарантия', 'label' => 'и сервисная поддержка', 'icon' => 'shield'], ], ], default => [ 'eyebrow' => 'TOPDAN ƏMƏKDAŞLIQ', 'title' => 'Mağazalar üçün topdan əməkdaşlıq', 'text' => 'BERNESSO məhsullarını mağazanızda təqdim etmək istəyirsinizsə, bizimlə əməkdaşlığa qoşulun. Topdan qiymətlər, sabit təchizat və satış dəstəyi ilə biznesinizə uyğun təklif hazırlayaq.', 'button' => 'ƏMƏKDAŞLIQ ÜÇÜN MÜRACİƏT ET', 'benefits' => [ ['title' => 'Xüsusi topdan qiymətlər', 'icon' => 'tag'], ['title' => 'Sabit və sürətli təchizat', 'icon' => 'box'], ['title' => 'Keyfiyyətli məhsul zəmanəti', 'icon' => 'award'], ['title' => 'Satış və marketinq dəstəyi', 'icon' => 'support'], ], 'stats' => [ ['value' => '100+', 'label' => 'Əməkdaş mağaza', 'icon' => 'store'], ['value' => '20+', 'label' => 'Şəhər və rayon', 'icon' => 'location'], ['value' => 'Etibarlı', 'label' => 'uzunmüddətli tərəfdaşlıq', 'icon' => 'handshake'], ['value' => 'Rəsmi zəmanət', 'label' => 'və servis dəstəyi', 'icon' => 'shield'], ], ], }; $wholesaleLocale = current_locale(); $wholesaleSettings = $wholesaleBlock?->settings[$wholesaleLocale] ?? []; if ($wholesaleSettings) { $wholesale['eyebrow'] = $wholesaleSettings['eyebrow'] ?? $wholesale['eyebrow']; $wholesale['title'] = $wholesaleSettings['title'] ?? $wholesale['title']; $wholesale['text'] = $wholesaleSettings['description'] ?? $wholesale['text']; $wholesale['button'] = $wholesaleSettings['button'] ?? $wholesale['button']; foreach ($wholesaleSettings['benefits'] ?? [] as $index => $title) { if (isset($wholesale['benefits'][$index])) { $wholesale['benefits'][$index]['title'] = $title; } } foreach ($wholesaleSettings['stats'] ?? [] as $index => $stat) { if (isset($wholesale['stats'][$index])) { $wholesale['stats'][$index]['value'] = $stat['value'] ?? $wholesale['stats'][$index]['value']; $wholesale['stats'][$index]['label'] = $stat['label'] ?? $wholesale['stats'][$index]['label']; } } } $wholesaleImage = $wholesaleBlock?->image ?: 'bernesso.png'; $wholesaleLink = $wholesaleBlock?->link ? str_replace('{locale}', current_locale(), $wholesaleBlock->link) : localized_route('contacts') . '?type=wholesale'; @endphp @if($wholesaleBlock?->is_active)
{{ $wholesale['eyebrow'] }}

{{ $wholesale['title'] }}

{{ $wholesale['text'] }}

@foreach($wholesale['benefits'] as $benefit)
@include('partials.wholesale-icon', ['icon' => $benefit['icon']])

{{ $benefit['title'] }}

@endforeach
{{ $wholesale['button'] }}
BERNESSO topdan əməkdaşlıq
@foreach($wholesale['stats'] as $stat)
@include('partials.wholesale-icon', ['icon' => $stat['icon']])
{{ $stat['value'] }} {{ $stat['label'] }}
@endforeach
@endif @endsection