@extends('layout') @section('title', 'Product Detail') @section('content')
Product Image

{{ $data->name }}

{{ __('text.price') }}:@if(session('currency_id')) {{ session('currency_symbol') }} @php $currencyValue = session('value') ?? 1; $totalPrice = $currencyValue * $data->price; @endphp {{ $totalPrice }}

@else {{$symbol}} {{$data->price}}

@endif

{{ strip_tags($data->description) }}

@endsection