610 lines
29 KiB
PHP
610 lines
29 KiB
PHP
@if(Session::has('success'))
|
||
<div class="alert alert-success alert-dismissible" role="alert">
|
||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||
{{ Session::get('success') }}
|
||
</div>
|
||
@elseif(Session::has('error'))
|
||
<div class="alert alert-danger alert-dismissible">
|
||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||
<h4><i class="icon fa fa-ban"></i> {{__('誤差')}}:</h4>
|
||
{!! Session::get('error') !!}
|
||
</div>
|
||
@elseif(isset($errorMsg))
|
||
<div class="alert alert-danger alert-dismissible">
|
||
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||
<h4><i class="icon fa fa-ban"></i> {{__('誤差')}}:</h4>
|
||
{!! $errorMsg !!}
|
||
</div>
|
||
@endif
|
||
<div class="card-header">
|
||
@if($isInfo)
|
||
<a href="{{route('regular_contract_add')}}" class="btn btn-lg btn-success">{{__('登録')}}</a>
|
||
<a href="{{route('regular_contract_edit',['id'=>$contract_id])}}" class="btn btn-lg btn-danger">{{__('編集')}}</a>
|
||
@else
|
||
<button type="submit" class="btn btn-lg btn-danger" @if(!$isEdit && !$isInfo) id="register" @endif>{{__('保存')}}</button>
|
||
@endIf
|
||
</div>
|
||
<div class="card-body">
|
||
<div class="row">
|
||
@if($isEdit || $isInfo)
|
||
<!-- 定期契約ID -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_id')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$contract_id}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contract_id')}}" @endIf
|
||
class="form-control form-control-lg" readonly/>
|
||
</div>
|
||
</div>
|
||
@endif
|
||
<!-- 定期契約QRID -->
|
||
<div class="form-group col-3">
|
||
<label @if(!$isInfo) class="required" @endif>{{__('validation.attributes.contract_qr_id')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$contract_qr_id}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contract_qr_id')}}" @endIf name="contract_qr_id"
|
||
class="form-control form-control-lg" @if($isEdit || $isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 定期契約QRID -->
|
||
|
||
<!-- 利用者ID -->
|
||
<div class="form-group col-3">
|
||
<label @if(!$isInfo) class="required" @endif>{{__('validation.attributes.user_id')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$user_id}}" @if(!$isInfo) placeholder="{{__('validation.attributes.user_id')}}" @endIf
|
||
name="user_id"
|
||
class="form-control form-control-lg" @if($isEdit || $isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 利用者ID -->
|
||
|
||
<!-- 利用者分類ID -->
|
||
<div class="form-group col-3">
|
||
<label @if(!$isInfo) class="required" @endif>{{__('validation.attributes.user_categoryid')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$user_categoryid}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.user_categoryid')}}" @endIf name="user_categoryid"
|
||
class="form-control form-control-lg" @if($isEdit || $isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 利用者分類ID -->
|
||
|
||
<!-- 定期予約ID -->
|
||
<div class="form-group col-3">
|
||
<label @if(!$isInfo) class="required" @endif>{{__('validation.attributes.reserve_id')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$reserve_id}}" @if(!$isInfo) placeholder="{{__('validation.attributes.reserve_id')}}" @endIf
|
||
name="reserve_id"
|
||
class="form-control form-control-lg" @if($isEdit || $isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 定期予約ID -->
|
||
|
||
<!-- 駐輪場ID -->
|
||
<div class="form-group col-3">
|
||
<label @if(!$isInfo) class="required" @endif>{{__('validation.attributes.park_id')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$park_id}}" @if(!$isInfo) placeholder="{{__('validation.attributes.park_id')}}" @endIf
|
||
name="park_id"
|
||
class="form-control form-control-lg" @if($isEdit || $isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 駐輪場ID -->
|
||
|
||
<!-- 駐輪場所ID -->
|
||
<div class="form-group col-3">
|
||
<label @if(!$isInfo) class="required" @endif>{{__('validation.attributes.price_parkplaceid')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$price_parkplaceid}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.price_parkplaceid')}}" @endIf name="price_parkplaceid"
|
||
class="form-control form-control-lg" @if($isEdit || $isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 駐輪場所ID -->
|
||
|
||
<!-- 防犯登録番号 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.user_securitynum')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$user_securitynum}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.user_securitynum')}}" @endIf name="user_securitynum"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 防犯登録番号 -->
|
||
|
||
<!-- 予約日時 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.reserve_date')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="date" value="@if(!empty($reserve_date)){{date('Y-m-d',strtotime($reserve_date))}}@endif"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.reserve_date')}}" @endIf name="reserve_date"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 予約日時 -->
|
||
|
||
<!-- 予約移行フラグ -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_reserve')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="row">
|
||
<div class="col-4 offset-1 form-check">
|
||
<input type="radio" class="minimal"
|
||
name="contract_reserve" @if($isInfo) disabled @endif
|
||
value="{{__("予約")}}" {{$contract_reserve == __("予約")? 'checked':''}}>
|
||
<label class="form-check-label">{{__("予約")}}</label>
|
||
</div>
|
||
<div class="col-2 form-check">
|
||
<input type="radio" class="minimal"
|
||
name="contract_reserve" @if($isInfo) disabled @endif
|
||
value="{{__("予約しない")}}" {{$contract_reserve == __("予約しない")? 'checked':''}}>
|
||
<label class="form-check-label">{{__("予約しない")}}</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 予約移行フラグ -->
|
||
|
||
<!-- 契約日時 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_created_at')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="date" value="@if(!empty($created_at)){{date('Y-m-d',strtotime($created_at))}}@endif"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contract_created_at')}}" @endIf name="created_at"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 契約日時 -->
|
||
|
||
<!-- 更新可能日 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_updated_at')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="date" value="@if(!empty($updated_at)){{date('Y-m-d',strtotime($updated_at))}}@endif"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contract_updated_at')}}" @endIf name="updated_at"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 更新可能日 -->
|
||
|
||
<!-- 解約日時 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_cancelday')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="date"
|
||
value="@if(!empty($contract_cancelday)){{date('Y-m-d',strtotime($contract_cancelday))}}@endif"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contract_cancelday')}}" @endIf name="contract_cancelday"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 解約日時 -->
|
||
|
||
<!-- 減免措置 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_reduction')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$contract_reduction}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contract_reduction')}}" @endIf name="contract_reduction"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 減免措置 -->
|
||
|
||
<!-- 有効期間S -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_periods')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$contract_periods}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contract_periods')}}" @endIf name="contract_periods"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 有効期間S -->
|
||
|
||
<!-- 有効期間E -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_periode')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$contract_periode}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contract_periode')}}" @endIf name="contract_periode"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 有効期間E -->
|
||
|
||
<!-- 消費税ID -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_taxid')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$contract_taxid}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contract_taxid')}}" @endIf name="contract_taxid"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 消費税ID -->
|
||
|
||
<!-- 請求金額 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.billing_amount')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$billing_amount}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.billing_amount')}}" @endIf name="billing_amount"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 請求金額 -->
|
||
|
||
<!-- 授受日時 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_payment_day')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="date" value="@if(!empty($contract_payment_day)){{date('Y-m-d',strtotime($contract_payment_day))}}@endif"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contract_payment_day')}}" @endIf name="contract_payment_day"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 授受日時 -->
|
||
|
||
<!-- 授受金額 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_money')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$contract_money}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contract_money')}}" @endIf name="contract_money"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 授受金額 -->
|
||
|
||
<!-- 解約時返戻金 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.refunds')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$refunds}}" @if(!$isInfo) placeholder="{{__('validation.attributes.refunds')}}" @endIf
|
||
name="refunds"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 解約時返戻金 -->
|
||
|
||
<!-- 返戻金付随情報 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.refunds_comment')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$refunds_comment}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.refunds_comment')}}" @endIf name="refunds_comment"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 返戻金付随情報 -->
|
||
|
||
<!-- 返金日 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.repayment_at')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="date" value="@if(!empty($repayment_at)){{date('Y-m-d',strtotime($repayment_at))}}@endif"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.repayment_at')}}" @endIf name="repayment_at"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 返金日 -->
|
||
|
||
<!-- 決済コード -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contact_guid')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$contact_guid}}" @if(!$isInfo) placeholder="{{__('validation.attributes.contact_guid')}}" @endIf
|
||
name="contact_guid"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 決済コード -->
|
||
|
||
<!-- 店舗コード -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contact_shop_code')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$contact_shop_code}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contact_shop_code')}}" @endIf name="contact_shop_code"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 店舗コード -->
|
||
|
||
<!-- 授受種別 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_cvs_class')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$contract_cvs_class}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contract_cvs_class')}}" @endIf name="contract_cvs_class"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 授受種別 -->
|
||
|
||
<!-- 授受フラグ -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_flag')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="row">
|
||
<div class="col-2 offset-1 form-check">
|
||
<input type="radio" class="minimal"
|
||
name="contract_flag" @if($isInfo) disabled @endif
|
||
value="1" {{$contract_flag? 'checked':''}}>
|
||
<label class="form-check-label">{{__("はい")}}</label>
|
||
</div>
|
||
<div class="col-2 form-check">
|
||
<input type="radio" class="minimal"
|
||
name="contract_flag" @if($isInfo) disabled @endif
|
||
value="0" {{!$contract_flag? 'checked':''}}>
|
||
<label class="form-check-label">{{__("いいえ")}}</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 授受フラグ -->
|
||
|
||
<!-- 決済トランザクションID -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.settlement_transaction_id')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$settlement_transaction_id}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.settlement_transaction_id')}}" @endIf
|
||
name="settlement_transaction_id"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 決済トランザクションID -->
|
||
|
||
<!-- シール発行数 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_seal_issue')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$contract_seal_issue}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contract_seal_issue')}}" @endIf name="contract_seal_issue"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - シール発行数 -->
|
||
|
||
<!-- シール再発行リクエスト -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.seal_reissue_request')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="row">
|
||
<div class="col-2 offset-1 form-check">
|
||
<input type="radio" class="minimal"
|
||
name="seal_reissue_request" @if($isInfo) disabled @endif
|
||
value="1" {{$seal_reissue_request? 'checked':''}}>
|
||
<label class="form-check-label">{{__("はい")}}</label>
|
||
</div>
|
||
<div class="col-2 form-check">
|
||
<input type="radio" class="minimal"
|
||
name="seal_reissue_request" @if($isInfo) disabled @endif
|
||
value="0" {{!$seal_reissue_request? 'checked':''}}>
|
||
<label class="form-check-label">{{__("いいえ")}}</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - シール再発行リクエスト -->
|
||
|
||
<!-- シール発行許可 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_permission')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="row">
|
||
<div class="col-2 offset-1 form-check">
|
||
<input type="radio" class="minimal"
|
||
name="contract_permission" @if($isInfo) disabled @endif
|
||
value="1" {{$contract_permission? 'checked':''}}>
|
||
<label class="form-check-label">{{__("発行許可")}}</label>
|
||
</div>
|
||
<div class="col-3 form-check">
|
||
<input type="radio" class="minimal"
|
||
name="contract_permission" @if($isInfo) disabled @endif
|
||
value="0" {{!$contract_permission? 'checked':''}}>
|
||
<label class="form-check-label">{{__("発行許可しない")}}</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - シール発行許可 -->
|
||
|
||
<!-- 解約フラグ -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_cancel_flag')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="row">
|
||
<div class="col-2 offset-1 form-check">
|
||
<input type="radio" class="minimal"
|
||
name="contract_cancel_flag" @if($isInfo) disabled @endif
|
||
value="1" {{$contract_cancel_flag? 'checked':''}}>
|
||
<label class="form-check-label">{{__("解約")}}</label>
|
||
</div>
|
||
<div class="col-2 form-check">
|
||
<input type="radio" class="minimal"
|
||
name="contract_cancel_flag" @if($isInfo) disabled @endif
|
||
value="0" {{!$contract_cancel_flag? 'checked':''}}>
|
||
<label class="form-check-label">{{__("解約しない")}}</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 解約フラグ -->
|
||
|
||
<!-- タグ/QRフラグ -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.tag_qr_flag')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="row">
|
||
<div class="col-2 offset-1 form-check">
|
||
<input type="radio" class="minimal"
|
||
name="tag_qr_flag" @if($isInfo) disabled @endif
|
||
value="0" {{!$tag_qr_flag? 'checked':''}}>
|
||
<label class="form-check-label">{{__("タグ")}}</label>
|
||
</div>
|
||
<div class="col-2 form-check">
|
||
<input type="radio" class="minimal"
|
||
name="tag_qr_flag" @if($isInfo) disabled @endif
|
||
value="1" {{$tag_qr_flag? 'checked':''}}>
|
||
<label class="form-check-label">{{__("QR")}}</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - タグ/QRフラグ -->
|
||
|
||
<!-- オペレータータグ変更フラグ -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.tag_change_flag')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="row">
|
||
<div class="col-3 offset-1 form-check">
|
||
<input type="radio" class="minimal"
|
||
name="tag_change_flag" @if($isInfo) disabled @endif
|
||
value="1" {{$tag_change_flag? 'checked':''}}>
|
||
<label class="form-check-label">{{__("タグに変更する")}}</label>
|
||
</div>
|
||
<div class="col-3 form-check">
|
||
<input type="radio" class="minimal"
|
||
name="tag_change_flag" @if($isInfo) disabled @endif
|
||
value="0" {{!$tag_change_flag? 'checked':''}}>
|
||
<label class="form-check-label">{{__("タグに変更しない")}}</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - オペレータータグ変更フラグ -->
|
||
|
||
<!-- 駐輪位置番号 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.park_position')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$park_position}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.park_position')}}" @endIf name="park_position"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 駐輪位置番号 -->
|
||
|
||
<!-- オペレータID -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.ope_id')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$ope_id}}" @if(!$isInfo) placeholder="{{__('validation.attributes.ope_id')}}" @endIf
|
||
name="ope_id"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - オペレータID -->
|
||
|
||
<!-- 手動通知 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_manual')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$contract_manual}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contract_manual')}}" @endIf name="contract_manual"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 手動通知 -->
|
||
|
||
<!-- 通知方法 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_notice')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$contract_notice}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contract_notice')}}" @endIf name="contract_notice"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 通知方法 -->
|
||
|
||
<!-- 受付番号 -->
|
||
<div class="form-group col-3">
|
||
<label>{{__('validation.attributes.contract_payment_number')}}</label>
|
||
</div>
|
||
<div class="form-group col-9">
|
||
<div class="input-group">
|
||
<input type="text" value="{{$contract_payment_number}}"
|
||
@if(!$isInfo) placeholder="{{__('validation.attributes.contract_payment_number')}}" @endIf
|
||
name="contract_payment_number"
|
||
class="form-control form-control-lg" @if($isInfo) readonly @endif/>
|
||
</div>
|
||
</div>
|
||
<!-- /.form group - 受付番号 -->
|
||
</div>
|
||
@if($isInfo)
|
||
<a href="{{route('regular_contract_add')}}" class="btn btn-lg btn-success">{{__('登録')}}</a>
|
||
<a href="{{route('regular_contract_edit',['id'=>$contract_id])}}" class="btn btn-lg btn-danger">{{__('編集')}}</a>
|
||
@else
|
||
<button type="submit" class="btn btn-lg btn-danger" @if(!$isEdit || !$isInfo) id="register" @endif>{{__('保存')}}</button>
|
||
@endIf
|
||
</div>
|
||
|