×
@lang('app.product') @lang('app.details')
{{ ucwords($product->name) }} @if($product->category_id)
{{ ucwords($product->category->category_name) }}
@endif @if($product->sub_category_id)
{{ ucwords($product->subcategory->category_name) }}
@endif
@if(!is_null($product->project_id))
{{ ucfirst($product->project->project_name) }}
@endif
@lang('modules.estimates.price')
{{ $price }}
@lang('app.taxes')
@php $flag = 0; @endphp @foreach($taxes as $tax) @if (isset($product->taxes) && $product->taxes != "null" && array_search($tax->id, json_decode($product->taxes)) !== false)
{{ $tax->tax_name }}: {{ $tax->rate_percent }}%
@php $flag = 1; @endphp @endif @endforeach @if ($flag == 0) NA @endif
@lang('app.description')
@if($product->description) {!! ucwords($product->description) !!} @else -- @endif