@extends('main') @section('styles') @endsection @section('page-title') @endsection @section('content')
@if (session()->has('success_message'))
{{ session()->get('success_message') }}
@endif @if (session()->has('error_message'))
{{ session()->get('error_message') }}
@endif @if (sizeof(Cart::instance('compare')->content()) > 0)
@php $count = count($products) ? count($products) : 1; $width = ceil(100/$count); @endphp @foreach ($products as $product) @endforeach
{{ $product->title }}

{{ $product->title }}

@if ($product->price2)
@if ($product->offer) {{ $product->price2 }} {{ $product->offer }} @else {{ $product->price2 }} @endif
{{ __('EGP') }} @endif
@if (@$product->category)
{{ __('Category') }} : {!! @$product->category->title !!}
@endif @if (@$product->style)
{{ __('Style') }} : {!! @$product->style->title !!}
@endif @if (@$product->led)
{{ __('Led') }} : {!! @$product->led->title !!}
@endif @if (@$product->roomSetting)
{{ __('Room Setting') }} : {!! @$product->roomSetting->title !!}
@endif
{{ __('Dimensions') }} : {!! @$product->length !!}×{!! @$product->width !!}×{!! @$product->height !!}
@if ($product->finish->count())

{{ __('Finishes') }}

@foreach ($product->finish as $key => $finish) @endforeach
@endif
{!! csrf_field() !!}
@else

{{ __('You have no items in your Compare list') }}

{{ __('Continue Shopping') }} @endif
@endsection @section('scripts') @endsection