24 lines
1.4 KiB
PHP
24 lines
1.4 KiB
PHP
@extends('layouts.app')
|
|
@section('title', 'WMS Advanced')
|
|
@section('content')
|
|
<section class="content-header"><h1>WMS — Wave Picking & Yard</h1></section>
|
|
<section class="content">
|
|
<div class="box box-primary">
|
|
<div class="box-header"><h3 class="box-title">Pick Waves</h3></div>
|
|
<div class="box-body table-responsive">
|
|
<table class="table table-bordered"><thead><tr><th>Wave</th><th>Status</th><th>Lines</th><th></th></tr></thead>
|
|
<tbody>@foreach($waves as $w)<tr>
|
|
<td>{{ $w->wave_no }}</td><td>{{ $w->status }}</td><td>{{ $w->lines->count() }}</td>
|
|
<td>@if($w->status==='planned')<form method="POST" action="{{ url('inventorymanagement/wms/waves/'.$w->id.'/release') }}">@csrf<button class="btn btn-xs btn-success">Release</button></form>@endif</td>
|
|
</tr>@endforeach</tbody></table>
|
|
{{ $waves->links() }}
|
|
</div>
|
|
</div>
|
|
<div class="box box-info">
|
|
<div class="box-header"><h3 class="box-title">Yard Locations</h3></div>
|
|
<div class="box-body"><table class="table table-bordered"><thead><tr><th>Code</th><th>Name</th><th>Type</th><th>Status</th></tr></thead>
|
|
<tbody>@foreach($yards as $y)<tr><td>{{ $y->code }}</td><td>{{ $y->name }}</td><td>{{ $y->type }}</td><td>{{ $y->status }}</td></tr>@endforeach</tbody></table></div>
|
|
</div>
|
|
</section>
|
|
@endsection
|