@php use App\Services\MediaService; @endphp

{{ labels('front_messages.what_are_you_looking_for?', 'What are you looking for?') }}

    @if (count($search_products) < 1 && count($combo_search_products) < 1)
  • {{ labels('front_messages.You_dont_have_any_items_in_your_search.', 'You don\'t have any items in your search.') }}
  • @else
  • {{ labels('front_messages.search_product_for', 'Search Product For') }} {{ $search }}
  • @foreach ($search_products as $product) @php $pro_img = app(MediaService::class)->dynamic_image($product['image'], 120); @endphp
  • @endforeach @foreach ($combo_search_products as $combo_product) @php $pro_img = app(MediaService::class)->dynamic_image($combo_product->image, 120); @endphp
  • prduct

    {{ labels('front_messages.combo_product', 'Combo Product') }}

  • @endforeach @endif