You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
2.0 KiB
53 lines
2.0 KiB
12 months ago
|
@extends('layouts.main')
|
||
|
@section('content')
|
||
|
<style>
|
||
|
.table th {
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
|
||
|
.table td {
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
</style>
|
||
|
<div class="card shadow mb-4">
|
||
|
<div class="card-header py-3">
|
||
|
<div class="row">
|
||
|
<div class="col-6">
|
||
|
<h5 class="m-0 font-weight-bold text-primary mt-2">Data Transfer</h5>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="card-body">
|
||
|
<div class="table-responsive">
|
||
|
<table class="table table-bordered" id="tablebarang" width="100%" cellspacing="0">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th class="text-center">No</th>
|
||
|
<th>Kode Peti</th>
|
||
|
<th>Nama Customer</th>
|
||
|
<th>Tgl Transfer</th>
|
||
|
<th>Asal Gudang</th>
|
||
|
<th>Tujuan Gudang</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
@php
|
||
|
$notransfer = 1;
|
||
|
@endphp
|
||
|
@foreach ($transfer as $data_transfer)
|
||
|
<tr>
|
||
|
<td>{{ $notransfer++ }}</td>
|
||
|
<td>{{ $data_transfer->peti->fix_lot }}</td>
|
||
|
<td>{{ $data_transfer->customer->name ?? '' }}</td>
|
||
|
<td>{{ \Carbon\Carbon::parse($data_transfer->date)->format('d/m/Y') }}</td>
|
||
|
<td>{{ $data_transfer->sourceWarehouse->name ?? '' }}</td>
|
||
|
<td>{{ $data_transfer->destinationWarehouse->name }}</td>
|
||
|
</tr>
|
||
|
@endforeach
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
@endsection
|