@extends('layouts.app') @section('styles') @endsection @section('title', unserialize($product->meta_title)['meta_title_'.app()->getLocale()]) @section('description', unserialize($product->meta_description)['meta_description_'.app()->getLocale()]) @section('keywords', unserialize($product->meta_keyword)['meta_keyword_'.app()->getLocale()]) @section('content')
SMOOTH INTERFACE INTERACTION

{{ unserialize($product->title)['title_'.app()->getLocale()] }}

{{ unserialize($product->address)['address_'.app()->getLocale()] }}

{{--
{{ $product->price }} GEL
--}}
@if(count($product->productImages) > 0) @else
Image
@endif
@if(count($product->productAttributes) > 0) @foreach($product->productAttributes as $productAttribute) @endforeach @else
Currently no details
@endif
{{ unserialize($productAttribute->attribute->title)['title_'.app()->getLocale()] }} : @if($productAttribute->attribute->type == 'custom') {{ $productAttribute->value }} @elseif($productAttribute->attribute->type == 'select') @php $valueArray = explode(',', $productAttribute->value); @endphp @if(app()->getLocale() == 'ge') {{ isset($valueArray[0]) ? $valueArray[0] : '' }} @elseif(app()->getLocale() == 'en') {{ isset($valueArray[1]) ? $valueArray[1] : '' }} @endif @elseif($productAttribute->attribute->type == 'checkbox') @if($productAttribute->value == 'on') @else @endif @endif

{{ unserialize($product->description)['description_'.app()->getLocale()] }}

@endsection @section('scripts') @include('pages.products.js.venue') @endsection