@if (isset($saleorder))
{!! Form::open(['url' => $type . '/' . $saleorder->id, 'method' => 'delete', 'class' => 'bf']) !!}
@endif
| {{trans('quotation.product')}} |
{{trans('quotation.description')}} |
{{trans('quotation.quantity')}} |
{{trans('quotation.unit_price')}} |
{{trans('quotation.taxes')}} |
{{trans('quotation.subtotal')}} |
@if(isset($saleorder) && $saleorder->products->count()>0)
@foreach($saleorder->products as $index => $variants)
|
{{$variants->product_name}}
|
{{$variants->description}}
|
{{$variants->quantity}}
|
{{$variants->price}}
|
{{number_format($variants->quantity * $variants->price * floatval(Settings::get('sales_tax')) / 100, 2,
'.', '')}} |
{{$variants->sub_total}}
|
@endforeach
@endif
{!! Form::close() !!}