@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.subtotal')}} |
@if(isset($saleorder)&& $saleorder->salesOrderProducts->count()>0)
@foreach($saleorder->salesOrderProducts as $index => $variants)
{{$variants->product_name}}
|
{{$variants->description}}
|
{{$variants->pivot->quantity}}
|
{{$variants->pivot->price}}
|
{{$variants->pivot->quantity*$variants->pivot->price}}
|
@endforeach
@endif
{!! Form::close() !!}