* @if($errors->has('delivery_date')) {{ $errors->first('delivery_date') }} @endif
* @if($errors->has('delivery_time')) {{ $errors->first('delivery_time') }} @endif
* @if($errors->has('delivery_address')) {{ $errors->first('delivery_address') }} @endif
@php $grand_total = 0; @endphp @if($activities->isNotEmpty()) @foreach($activities as $activity) @php $grand_total = $grand_total + ($activity->quantity*$activity->rate); @endphp @endforeach @endif
Activity Code Activity Image Unit Quantity Rate Total
{{ $activity->item_code }}
@if($errors->has('activities.*.activity')) {{ $errors->first('activities.*.activity') }} @endif
@if($errors->has('activities.*.unit')) {{ $errors->first('activities.*.unit') }} @endif
@if($errors->has('activities.*.quantity')) {{ $errors->first('activities.*.quantity') }} @endif
@if($errors->has('activities.*.rate')) {{ $errors->first('activities.*.rate') }} @endif
@if($errors->has('activities.*.total')) {{ $errors->first('activities.*.total') }} @endif
  Carriage costs
@if($errors->has('carriage_costs')) {{ $errors->first('carriage_costs') }} @endif
  C of C
@if($errors->has('c_of_c')) {{ $errors->first('c_of_c') }} @endif
  Other costs
@if($errors->has('other_costs')) {{ $errors->first('other_costs') }} @endif
  Total Value
@if($errors->has('grand_total')) {{ $errors->first('grand_total') }} @endif