@extends('backend.layouts.app') @section('title') 見積一覧 @endsection @section('content')

見積一覧

@include('backend.layouts.flash-message') {{ Form::open(['route'=>"backend.{$department}.estimate.index", 'method'=>'get']) }}

検索条件

{{ Form::close() }} {{-- $lease_estimates->appends(['search_param'=>$search_param])->links('vendor.pagination.admin-pagination') --}}
@if ($lease_estimates->count() > 0) @foreach ($lease_estimates as $lease_estimate) @endforeach @else @endif
操作 車台番号 見積日@sortablelink('estimatedate', ' ▲▼') 見積先 見積合計@sortablelink('total', ' ▲▼') 見積書出力
{{ $lease_estimate->chassis_no }} {{ Carbon::parse($lease_estimate->estimate_date)->format('Y.m.d') }} {{ $lease_estimate->partner_name }} {{ number_format($lease_estimate->total_fee).'円' }}
見積データが存在しません。
{{ $lease_estimates->appends(['search_param'=>$search_param])->links('vendor.pagination.admin-pagination') }} @endsection @section('page_css') @endsection @section('page_js') @endsection