@if ($errors->has('item_id'))
{{ $errors->first('item_id') }}
@endif
|
@if ($errors->has('sell_price'))
{{ $errors->first('sell_price') }}
@endif
|
@if ($errors->has('quantity'))
{{ $errors->first('quantity') }}
@endif
|
@if ($errors->has('sub_total'))
{{ $errors->first('sub_total') }}
@endif
|
|
@php
$total_quantity += $editDataValue->quantity;
$grand_total += $editDataValue->sub_total;
@endphp
@endforeach
@endif