@extends('frontend.layouts.products-app') @section('title') Product Comparison @endsection @section('seo') @endsection @section('content')

Product Comparison

Colored product information below indicates the unique differences among the products being compared.

Back to Shop
@if(session('compare')) @php $details = current(session('compare')); // Get the first item in the session $typeProd = $details['product']['typeProd']; @endphp @if($typeProd === 'Safe' || $typeProd === 'Accessories')

TYPE


PRICE

FIRE RATING

SECURITY LEVEL

WATER RATING

SPECIFIC LOCK TYPE

CAPACITY

WEIGHT

DIMENSIONS (HxWxD)

ACCESSORIES INCLUDED

WARRANTY & GUARANTEE
{{--
--}}
@else

TYPE


PRICE

SIZE

CONNECTION TYPE

TYPE OF BATTERIES

DIMENSIONS (LxWxH)

WEIGHT
@endif @endif
@if(session('compare')) @foreach(session('compare') as $prodId => $details) @if($details['product']['typeProd'] === 'Safe' || $details['product']['typeProd'] === 'Accessories')

{{$details['product']['model']}}


{{ !empty($details['product']['price']) ? number_format($details['product']['price'], 2) : 'N/A' }}


{{ !empty($details['spec']['fireRating']) ? $details['spec']['fireRating'] : 'N/A' }}


{{ !empty($details['spec']['security']) ? $details['spec']['security'] : 'N/A' }}


{{ !empty($details['spec']['waterRating']) ? $details['spec']['waterRating'] : 'N/A' }}


{{ !empty($details['spec']['specTypelock']) ? $details['spec']['specTypelock'] : 'N/A' }}


{{ !empty($details['spec']['capacityCft']) ? $details['spec']['capacityCft'] . ' cu.ft' : 'N/A' }}


{{ !empty($details['spec']['weightKg']) ? $details['spec']['weightKg'] . ' kg/s' : 'N/A' }}


Internal Dimension {{ !empty($details['spec']['externalHi']) ? $details['spec']['externalHi'] . ' in' : 'N/A' }} x {{ !empty($details['spec']['externalWi']) ? $details['spec']['externalWi'] . ' in' : 'N/A' }} x {{ !empty($details['spec']['externalDi']) ? $details['spec']['externalDi']. ' in' : 'N/A' }}

External Dimension {{ !empty($details['spec']['internalHi']) ? $details['spec']['internalHi'] . ' in' : 'N/A' }} x {{ !empty($details['spec']['internalWi']) ? $details['spec']['internalWi'] . ' in' : 'N/A' }} x {{ !empty($details['spec']['internalDi']) ? $details['spec']['internalDi'] . ' in' : 'N/A' }}


{{ !empty($details['product']['accessorie']) ? $details['product']['accessorie'] : 'N/A' }}


{{ !empty($details['product']['waranty']) ? $details['product']['waranty'] : 'N/A' }}

@else

{{$details['product']['model']}}


{{ !empty($details['product']['price']) ? number_format($details['product']['price'],2) : 'N/A' }}


{{ !empty($details['product']['size']) ? $details['product']['size'] : 'N/A' }}


{{ !empty($details['product']['connType']) ? $details['product']['connType'] : 'N/A' }}


{{ !empty($details['product']['typeBatt']) ? $details['product']['typeBatt'] : 'N/A' }}


Internal Dimension {{ !empty($details['spec']['internalHi']) ? $details['spec']['internalHi'] . ' in' : 'N/A' }} x {{ !empty($details['spec']['internalWi']) ? $details['spec']['internalWi'] . ' in' : 'N/A' }} x {{ !empty($details['spec']['internalDi']) ? $details['spec']['internalDi'] . ' in' : 'N/A' }}

External Dimension {{ !empty($details['spec']['externalHi']) ? $details['spec']['externalHi'] . ' in' : 'N/A' }} x {{ !empty($details['spec']['externalWi']) ? $details['spec']['externalWi'] . ' in' : 'N/A' }} x {{ !empty($details['spec']['externalDi']) ? $details['spec']['externalDi']. ' in' : 'N/A' }}


{{ !empty($details['spec']['weightKg']) ? $details['spec']['weightKg'] . ' kg/s' : 'N/A' }}

@endif @endforeach @endif @if(count(session('compare')) < 3)
{{--

TYPE


MODEL

PRICE

FIRE RATING

SECURITY LEVEL

WATER RATING

SPECIFIC LOCK TYPE

CAPACITY

WEIGHT

DIMENSIONS (LxWxH)

ACCESSORIES INCLUDED

WARRANTY & GUARANTEE

--}}
@endif {{-- @if(count(session('compare')) < 3) @endif --}}
@if(count(session('compare')) == 0) @endif
@endsection