@extends('user.app', compact('title')) @section('content') @include('web.widgets.webBanner') @php $showcase = [ 'hotdeal' => [ 'title' => "Hot Deals", 'condition' => 'label=hotdeal&sort=latest' ], 'rekomendasi' => [ 'title' => "Rekomendasi", 'condition' => 'label=rekomendasi&sort=latest', ], 'baru' => [ 'title' => "Mobil Baru", 'condition' => "kondisi=baru&sort=latest" ], 'murah' => [ 'title' => "Mobil Murah", 'condition' => "label=murah&sort=latest" ], 'bekas' => [ 'title' => "Mobil Bekas", 'condition' => "kondisi=bekas&sort=latest" ] ] @endphp @foreach ($showcase as $k => $v) @include('web.widgets.productSlider', [ 'urlMore' => route('v2.product.search').'?'.$v['condition'], 'query' => $v['condition'], 'title' => $v['title'], 'id' => $k, ]) @endforeach {{-- Hot Deal --}} {{-- Mobil Berita --}} @include('web.widgets.newsSlider') @endsection