@extends('layout') @section('title', 'Product Detail') @section('content') @if(session('customer_id')) @endif
{{ __('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) }}