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

出庫一覧

出庫登録

$current_year, 'month'=>$current_month - 1]) }}">前月

{{ $current_year }}年{{ $current_month }}月

$current_year, 'month'=>$current_month + 1]) }}">翌月

{{ Form::open(['route' => "backend.{$department}.stock.confirm_out", 'id' => 'stock-out-form', 'name' => 'stock-out-form', 'method' => 'POST']) }} {{ $stock_out_vehicles->appends(['year'=>$current_year, 'month'=>$current_month])->links('vendor.pagination.admin-pagination') }} @if ($stock_out_vehicles->count() > 0) @foreach($stock_out_vehicles as $vehicle) @endforeach @else @endif
出庫済み 出庫予定日 出庫日 車台番号 形状 搬出先 搬出会社/氏名 搬出場所 備考
@if($vehicle->out_status == config('const.stock_out_status_code.completed')) 出庫済 @else @endif {{ $vehicle->out_exp_date ? Carbon::parse($vehicle->out_exp_date)->format('Y.m.d') : '' }} {{ $vehicle->out_date ? Carbon::parse($vehicle->out_date )->format('Y.m.d') : '' }} {{ $vehicle->chassis_no }} {{ $vehicle->vehicle_shape }} {{ $vehicle->carryin_dest }} {{ $vehicle->carryout_company }} {{ $vehicle->stock_out_place }} {{ $vehicle->carryout_note }}
出庫データが存在しません。
{{ $stock_out_vehicles->appends(['year'=>$current_year, 'month'=>$current_month])->links('vendor.pagination.admin-pagination') }}
{{ Form::close() }}
@include('backend.share.stock._m_out_register') @endsection @section('page_css') @endsection @section('page_js') @endsection