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

入庫一覧

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

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

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

{{ $stock_in_vehicles->appends(['year'=>$current_year, 'month'=>$current_month])->links('vendor.pagination.admin-pagination') }} @if ($stock_in_vehicles->count() > 0) @foreach($stock_in_vehicles as $vehicle) @endforeach @else @endif
入庫処理 入庫予定日 入庫日 車台番号 形状 搬出先 搬入会社/氏名 搬入方法 入庫場所 備考
コード読取 {{ $vehicle->in_exp_date ? Carbon::parse($vehicle->in_exp_date)->format('Y.m.d') : '' }} {{ $vehicle->in_date ? Carbon::parse($vehicle->in_date )->format('Y.m.d') : '' }} {{ $vehicle->chassis_no }} {{ $vehicle->vehicle_shape }} {{ $vehicle->carryout_dest }} {{ $vehicle->carryin_company }} {{ $vehicle->carryin_method }} {{ $vehicle->stock_place }} {!! Str::limit($vehicle->carryin_note, 50) !!}
入庫データが存在しません。
{{ $stock_in_vehicles->appends(['year'=>$current_year, 'month'=>$current_month])->links('vendor.pagination.admin-pagination') }} {{--
@php $url = route("backend.truck.stock.confirm_receipt"); @endphp
--}}
@include('backend.share.stock._m_in_register') @endsection @section('page_css') @endsection @section('page_js') @endsection