@foreach($show_columns as $column)
@php
$columnValue = data_get($entity, $column);
@endphp
@if ($column == 'status')
| {{ __('general.procedure_check_status.'.$columnValue) }} |
@elseif ($column == 'progress')
{{ $entity['total_checked_steps'].'/'.$entity['total_steps'].' ('.$entity['percent'].'%)' }} |
@else
{{ $columnValue }} |
@endif
@endforeach
@endforeach