@extends('layouts.master', [ 'class' => 'shipments', ]) @section('content') @component('components.card_main', [ 'title' => __('shipment.checklist_title') . ' - '. ucfirst($typeName) .' ' . $shipment->id, 'id' => 'checklist_create' ]) @slot('body')

@lang('shipment.points_rev')
@foreach($shipment->answersRevision as $answer) @php $id = $answer->id; @endphp
{{$answer->question_name}}
status ? 'checked' : '' }} data-fouc>
@if ($answer->comments)
{{$answer->comments}}
@endif @if ($answer->evidence_path)
@endif
@endforeach

@lang('shipment.points_insp')
@foreach($shipment->answersInspection as $answer) @php $id = $answer->id; @endphp
{{$answer->question_name}}
status ? 'checked' : ''}} data-fouc>
@if ($answer->comments)
{{$answer->comments}}
@endif @if ($answer->location)
{{$answer->location}}
@endif @if ($answer->evidence_path)
@endif
@endforeach

@lang('shipment.conditions_checklist_legend')

@lang('shipment.sign_guard'):
@lang('shipment.sign_supplier'):
@endslot @endcomponent @endsection @section('app-scripts') @endsection @section('plugin-scripts') @endsection