@extends('backend.layouts.app') @section('content')

書類管理(販売)-確認

@include('backend.layouts.flash-message') {{ Form::open(['route'=>"backend.{$department}.document.store_for_sale", 'method'=>'post']) }} @php $doc_sale_purpose_id = old('doc_sale_purpose_id', isset($params->doc_sale_purpose_id) ? $params->doc_sale_purpose_id : ""); @endphp
用途
{{-- 自家用・所有使用一緒 or 事業用・所有使用一緒--}}
所有者・使用者名
@if (old('additions') == null && isset($params->additions)) @for ($i = 0; $i < $params->additions->count(); $i++) @if ($params->additions[$i]->doc_kind == config('const.doc_sale_type_code.owner')) @include('backend.share.document._addition_part') @endif @endfor @endif @if (old('additions') != null && count(old('additions')) > 0 ) @foreach(old('additions') as $i => $addition) @if (old('additions.'.$i.'.doc_kind') == config('const.doc_sale_type_code.owner')) @include('backend.share.document._addition_part') @endif @endforeach @endif
所有者
所有者名
委任状
ower_power_attorney) ? $params->ower_power_attorney : "") == 1 ? "checked" : "" }}>
印鑑証明書
owner_stamp_cert) ? $params->owner_stamp_cert : "") == 1 ? "checked" : "" }}>
@if (old('additions') == null && isset($params->additions)) @for ($i = 0; $i < $params->additions->count(); $i++) @if ($params->additions[$i]->doc_kind == config('const.doc_sale_type_code.user')) @include('backend.share.document._addition_part') @endif @endfor @endif @if (old('additions') != null && count(old('additions')) > 0 ) @foreach(old('additions') as $i => $addition) @if (old('additions.'.$i.'.doc_kind') == config('const.doc_sale_type_code.user')) @include('backend.share.document._addition_part') @endif @endforeach @endif
使用者
使用者名
委任状
user_power_attorney) ? $params->user_power_attorney : "") == 1 ? "checked" : "" }}>
印鑑証明書(コピー)
user_stamp_cert) ? $params->user_stamp_cert : "") == 1 ? "checked" : "" }}>
車庫証明書
(申請書・自認書OR承諾書・配置図・公共料金領収書)
user_garage_cert) ? $params->user_garage_cert : "") == 1 ? "checked" : "" }}>
事業用自動車連絡表
(事前届出書・アンケート用紙)
user_contact_doc) ? $params->user_contact_doc : "") == 1 ? "checked" : "" }}>
@if (old('additions') == null && isset($params->additions)) @for ($i = 0; $i < $params->additions->count(); $i++) @if ($params->additions[$i]->doc_kind == config('const.doc_sale_type_code.combine')) @include('backend.share.document._addition_part') @endif @endfor @endif @if (old('additions') != null && count(old('additions')) > 0 ) @foreach(old('additions') as $i => $addition) @if (old('additions.'.$i.'.doc_kind') == config('const.doc_sale_type_code.combine')) @include('backend.share.document._addition_part') @endif @endforeach @endif
委任状
ower_power_attorney) ? $params->ower_power_attorney : "") == 1 ? "checked" : "" }}>
印鑑証明書
owner_stamp_cert) ? $params->owner_stamp_cert : "") == 1 ? "checked" : "" }}>
車庫証明書
(申請書・自認書OR承諾書・配置図・公共料金領収書)
user_garage_cert) ? $params->user_garage_cert : "") == 1 ? "checked" : "" }}>
事業用自動車連絡表
(事前届出書・アンケート用紙)
user_contact_doc) ? $params->user_contact_doc : "") == 1 ? "checked" : "" }}>


@php $comments = (isset($params['comment']) ? $params['comment'] : null); if(is_array($comments)){ $comments = array_filter($comments); } @endphp @if(!is_null($comments) && is_array($comments)) @foreach($comments as $key => $comment) @if(empty($comment['content'])) @continue @endif @endforeach
コメント @php echo nl2br($comment['content']); @endphp
@endif

書類受取
@foreach (config('const.doc_receipt_status') as $key=>$item) doc_receipt_status) ? $params->doc_receipt_status : "") == $key ? "checked" : "" }}> @endforeach
書類受領完了日
$params['vehicle_id']] )}}">戻る
{{ Form::close() }} @endsection @section('page_css') @endsection @section('page_js') @endsection