@extends('layouts.frontend') @section('content') Get a quote {{ __('messages.select_the_product') }} {{ __('messages.select_product_description') }} @foreach($categories as $category) @foreach($category->products as $product) first && $loop->parent->first ? 'checked' : '' }}> @if($product->images->where('type', 'home')->first()) @else @endif {{ $product->brand->name }} {{ $product->name }} @endforeach @endforeach {{-- @include('frontend.pages.product.partials.product_details', [ 'product' => $firstProduct, 'priceRecord' => $priceRecord, 'colors' => $colors, 'sizes' => $sizes, 'variations' => $variations, 'roofTypes' => $roofTypes, 'dailyPrices' => $dailyPrices, 'roofRackPrices' => $roofRackPrices, 'manufacturers' => $manufacturers ]) --}} @include('frontend.pages.product.partials.dynamic_product', [ 'product' => $firstProduct, 'productType' => $productType, 'manufacturers' => $manufacturers, 'colors' => $colors, 'sizes' => $sizes, 'variations' => $variations, 'roofTypes' => $roofTypes, 'dailyPrices' => $dailyPrices, 'roofRackPrices' => $roofRackPrices, 'nonworkingDays' => $nonworkingDays, 'holidays' => $holidays, ]) @include('frontend.include.subscribe_news')
{{ __('messages.select_product_description') }}