@extends(get_view('index')) @section('title') @endsection @section('header') @endsection @section('content')
@include(get_view('components.slider.slider')) @php $showroom_products = get_products_showroom(); $showroom_products = $showroom_products->chunk(4); @endphp @if($showroom_products && $showroom_products->count() > 0)

{{ __('Öne Çıkan Ürünler') }} 💥

@endif @php $categories_with_images = Site::mainCategoriesWithImages(); @endphp @if (count($categories_with_images) > 0)

{{ __('Öne Çıkan Kategoriler') }}💥

@foreach ($categories_with_images as $category) @endforeach
@endif @php $last_products = get_products(5); $first_product = $last_products->first(); $last_products = $last_products->slice(1); @endphp @if (count($last_products) > 0)

{{ __('Son Eklenen Ürünler') }}💥

{{ $first_product->content->name ?? '' }}

{{-- Starting From --}} {{ $first_product->get_price(false) }}
{{ $first_product->content->name ?? __('Ürün') }}
@foreach ($last_products as $last_product)
{{ $last_product->content->name ?? '' }}
{{-- Starting From --}} {{ $last_product->get_price(false) }}
{{ $last_product->content->name ?? __('Ürün') }}
@endforeach
@endif
Image

{{ __('Müşterilerimizin') }}
{{ __('Düşünceleri') }}

{{ __('Ürünüm çok özenli ve kırılmadan geldi, cidden çok memnunum.') }}

{{ __('BU** KA**') }}
{{ __('Müşteri') }}
1/2
@endsection @section('footer') @endsection