@extends('layouts.app') @section('link') @endsection @section('content')
{{strtoupper(__('texte.price_lists_arr.display.id'))}} | {{__('texte.price_lists_arr.display.name')}} | {{__('texte.price_lists_arr.display.price_type')}} | {{__('texte.price_lists_arr.display.price')}} | {{__('texte.price_lists_arr.display.description')}} | {{__('texte.price_lists_arr.display.fixed_price')}} | {{__('texte.price_lists_arr.display.condition')}} | {{__('texte.price_lists_arr.display.condition_period')}} | {{__('texte.price_lists_arr.display.condition_discount')}} | {{__('texte.price_lists_arr.display.condition_fixed_price')}} | {{__('texte.price_lists_arr.display.client_price')}} |
---|---|---|---|---|---|---|---|---|---|---|
{{ $product->id }} | {{ $product->name }} | {{ (isset($product->price) ? Lang::get('texte.price_arr')[$product->price] : __('texte.price_lists_arr.display.base_price'))}} | {{ $product->price!=4 ? number_format((float)$product[Lang::get('texte.price_arr_eng')[isset($product->price) ? $product->price : 3]],4,',',' ').__('texte.price_lists_arr.display.bgn') : ''}} | {{$product->discount}}{{$product->discount!='' ? ' %' : ''}} | {{$product->fixed_price!='' ? number_format((float)$product->fixed_price, 4, ',', '').__('texte.price_lists_arr.display.bgn') : ''}} | {{$product->condition}} | {{$product->cond_period}} | {{$product->cond_discount}} | {{$product->cond_fixed_price}} | {{ (isset($product->price_calculated) ? number_format($product->price_calculated, 4, ',', '') : number_format($product->price_base, 4, ',', '')).__('texte.price_lists_arr.display.bgn')}} |