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