@extends('layout.app') @section('page-title', $title) @section('breadcrumb')
Home {{ $title }}
@endsection @section('content')
{{-- Page Title and Description --}}

{{ $title }}

{{ $description }}

{{-- Customize Form --}}
{{-- Form Errors --}}
{{-- Table Header (Desktop) --}}
Product Name
Options
Qty
Price
Ext
{{-- Required Items --}}
@foreach($set_contents as $index => $item) @if($item['is_required']) @include('partials.customize.product-item', ['item' => $item, 'index' => $index]) @endif @endforeach
{{-- Total and Add to Cart Button for Required Items --}} @if($has_optional_items && !$custom_cushion_set && !$custom_cover_set) @include('partials.customize.totals-section', ['section_id' => 1]) @endif {{-- Optional Items --}} @if($has_optional_items && !$custom_cushion_set && !$custom_cover_set)

Optional Items

Product Name
Options
Qty
Price
Ext
@foreach($set_contents as $index => $item) @if($item['is_optional']) @include('partials.customize.product-item', ['item' => $item, 'index' => $index]) @endif @endforeach
@endif {{-- Final Total and Add to Cart Button --}} @include('partials.customize.totals-section', ['section_id' => 2])
@endsection @push('after-foot-js') @endpush