|
|
|
@extends('layouts.main')
|
|
|
|
@section('content')
|
|
|
|
@include('layouts.components.alert-prompt')
|
|
|
|
<style>
|
|
|
|
.table th {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table td {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
@if (auth()->user()->role_id == 1)
|
|
|
|
<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 Pengembalian</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>No</th>
|
|
|
|
<th>Kode Peti</th>
|
|
|
|
<th>Customer</th>
|
|
|
|
<th>Tgl Peinjaman</th>
|
|
|
|
<th>Estimasi Pengembalian</th>
|
|
|
|
<th>PJ Peminjaman</th>
|
|
|
|
<th>WH Peminjam</th>
|
|
|
|
<th>Tgl Pengembalian</th>
|
|
|
|
<th>PJ Pengembalian</th>
|
|
|
|
<th>WH Pengembalian</th>
|
|
|
|
<th>Kondisi Peti</th>
|
|
|
|
<th>Status</th>
|
|
|
|
<th class="text-center">Action</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
@php
|
|
|
|
$no_peminjaman = 1;
|
|
|
|
@endphp
|
|
|
|
@forelse ($peminjaman as $data)
|
|
|
|
@if ($data->enter_warehouse !== null)
|
|
|
|
<tr>
|
|
|
|
<td>{{ $no_peminjaman++ }}</td>
|
|
|
|
<td>{{ $data->peti->fix_lot }}</td>
|
|
|
|
<td>{{ $data->peti->customer->name }}</td>
|
|
|
|
<td>{{ \Carbon\Carbon::parse($data->exit_at)->format('d/m/Y') }}</td>
|
|
|
|
<td>{{ \Carbon\Carbon::parse($data->est_pengembalian)->format('d/m/Y') }}</td>
|
|
|
|
<td>{{ $data->exit_pic }}</td>
|
|
|
|
<td>
|
|
|
|
@if ($data->exit_warehouse)
|
|
|
|
{{ $data->warehouse->name }}
|
|
|
|
@else
|
|
|
|
<p class="text-center font-weight-bold">-</p>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
@if ($data->enter_at)
|
|
|
|
{{ \Carbon\Carbon::parse($data->enter_at)->format('d-m-Y') }}
|
|
|
|
@else
|
|
|
|
<p class="text-center font-weight-bold">-</p>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
@if ($data->enter_pic)
|
|
|
|
{{ $data->enter_pic }}
|
|
|
|
@else
|
|
|
|
<p class="text-center font-weight-bold">-</p>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
@if ($data->enter_warehouse)
|
|
|
|
{{ $data->warehouseEnter->name }}
|
|
|
|
@else
|
|
|
|
<p class="text-center font-weight-bold">-</p>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
@if ($data->kondisi_peti)
|
|
|
|
{{ $data->kondisi_peti->nama_kondisi }}
|
|
|
|
@else
|
|
|
|
<p class="text-center font-weight-bold">-</p>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
@if ($data->enter_warehouse === null)
|
|
|
|
Not Return
|
|
|
|
@else
|
|
|
|
Return
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td class="text-center">
|
|
|
|
<a href="{{ route('dashboard.pengembalian.edit', [$data->id]) }}"
|
|
|
|
title="Edit">
|
|
|
|
<i class="fa fa-edit mr-2" style="font-size: 20px"></i>
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endif
|
|
|
|
@empty
|
|
|
|
<p>Data Kosong</p>
|
|
|
|
@endforelse
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@else
|
|
|
|
@include('pages.user.Pengembalian.index')
|
|
|
|
@endif
|
|
|
|
@endsection
|