@extends('layouts.main')
@section('title', $product['product_name'])
@section('navbar')
@include('layouts.navbar')
@endsection
@section('style')
@endsection
@section('content')
@foreach ($priviewImages as $url)
@if (!empty($url))

@endif
@endforeach
@include('components.product_info')
@if (count($productBanners) > 0)
Product Details
@foreach ($productBanners as $v)
@if ($v['image_site'] == 'left')
{{ $v['title'] }}
{{ $v['description'] }}
@elseif ($v['image_site'] == 'right')
{{ $v['title'] }}
{{ $v['description'] }}
@endif
@endforeach
@endif
@include('components.recommended_products')
@include('components.review_list')