{{ html()->modelForm($model->documents, 'POST', route('organization.tender-evaluation-criterias.store'))->id('evaluation-form-validator')->acceptsFiles()->open() }}
{{ html()->closeModelForm() }}
@php $total = 0; @endphp @forelse ($model->evaluationCriterias as $criteria) @php $total +=$criteria->marks; @endphp @empty @endforelse
{{ __('table.sn') }} Criteria Title Marks Remarks {{ __('table.action') }}
{{ $loop->index + 1 }}. {{ $criteria->criteria }} {{ $criteria->marks }} {{ $criteria->remarks ?? '-' }}
@csrf @method('DELETE')
{{ __('table.no_data') }}
Total {{$total}}
@if($total>100)
Validation Error: Total marks exceeds than 100. Please update the marks before publishing the notice
@endif