@extends('backend.layouts.app') @section('title') @if($params['route']=='store') 見積作成確認 @elseif($params['route']=='update') 見積編集確認 @endif @endsection @section('content')

見積【確認】

{{ Form::open(["route"=>"backend.rental.estimate.".$params['route'], "method"=>"post"]) }}

見積情報

@if(isset($params['estimate_no'])) @endif
見積番号 {{ $params['estimate_no'] }}
見積日
@error('estimate_date') {{ $message }} @enderror

車両情報

顧客名
-
請求先 車台番号 車両ID 車名 登録番号 入力者 担当者

作業内容

@if( count($params['item_name']) > 0 ) @foreach ($params['item_name'] as $key => $item) @endforeach @endif
項目名 数量 単価 金額
小計
消費税
見積合計
@if($params['route']=='store') @elseif($params['route']=='update') @endif
{{ Form::close() }} @endsection @section('page_css') @endsection @section('page_js') {{-- --}} @endsection