@extends('layouts.app') @section('content')
{{__('texte.products_arr.show.price_type')}} | {{__('texte.products_arr.show.with_vat')}} | {{__('texte.products_arr.show.without_vat')}} |
---|---|---|
{{__('texte.products_arr.show.supply_price')}} | {{ number_format(($product->price_supply ?? 0)*1.2,5) }} | {{ number_format($product->price_supply ?? 0,5) }} |
{{__('texte.products_arr.show.base_price')}} | {{ number_format(($product->price_base ?? 0)*1.2,5) }} | {{ number_format($product->price_base ?? 0,5)}} |
{{__('texte.products_arr.show.single_base_price')}} | {{ number_format(($product->price_piece ?? 0)*1.2,5) }} | {{ number_format($product->price_piece ?? 0,5)}} |
{{__('texte.products_arr.show.recommend_price')}} | {{ number_format(($product->price_recommend ?? 0)*1.2,5) }} | {{ number_format($product->price_recommend ?? 0,5) }} |