@extends('frontend::layouts.master') @section('content') {{-- Page Title --}} {{-- Product Detail --}} {!! $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'])) @lang('frontend::text.related_portfolio') @foreach ($product['related'] as $rel) @include('frontend::partials.portfolio-card', [ 'item' => $rel, 'showDetailBtn' => false, ]) @endforeach @endif @endsection
{!! $product['desc'] ?? '' !!}
{!! $product['detail'] ?? '' !!}