@extends('frontend::layouts.master') @section('content') {{-- Page Title --}} {{-- Product Detail --}}
{!! $product['name'] ?? '' !!}

{!! $product['name'] ?? '' !!}

{!! $product['desc'] ?? '' !!}

{!! $product['detail'] ?? '' !!}

@if (!empty($product['features']))
    @foreach ($product['features'] as $feature)
  • {{ $feature }}
  • @endforeach
@endif
@if (!empty($product['text']))
{!! $product['text'] ?? '' !!}
@endif @if (!empty($product['related'])) @endif @endsection