@extends('buyer.layout') @section('title') Product Details @endsection @section('frontend-content')
@php $images = json_decode($product->product_image); @endphp @foreach($images as $key => $image)
Thumbnail {{ $key + 1 }}
@endforeach

{{$product->product_name}}

@if ($product->rfid)
{{ $product->rfid }}
@endif {!! $product->product_description !!}
{!! $product->additional_description !!}
  • FABRIC

    {{$product->faberic}}

  • CONSTRUCTION

    {{$product->construction}}

  • COLOURS

    {{$product->colors}}

@endsection @section('custom-script') @endsection