Siopas Inventory PETI for ISTW Website
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.
 
 
 
 
 
 

137 lines
7.5 KiB

@extends('layouts.main')
@section('content')
<style>
.table th {
white-space: nowrap;
}
.table td {
white-space: nowrap;
}
</style>
@include('layouts.components.alert-prompt')
<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 class="col-6 text-right">
<a href="{{ route('dashboard.transfer.create') }}" class="btn btn-success btn-icon-split">
<span class="text">Transfer Peti</span>
</a>
</div>
</div>
</div>
<div class="card-body">
<div class="row">
<div class="col-6">
<!-- Fitur page -->
<form method="GET" action="{{ route('dashboard.transfer.index') }}">
<label for="perPage">Tampilkan:</label>
<select id="perPage" name="perPage" class="form-select" onchange="this.form.submit()">
<option value="5" {{ request('perPage', 5) == '5' ? 'selected' : '' }}>5</option>
<option value="10" {{ request('perPage', 5) == '10' ? 'selected' : '' }}>10</option>
<option value="25" {{ request('perPage', 5) == '25' ? 'selected' : '' }}>25</option>
<option value="50" {{ request('perPage', 5) == '50' ? 'selected' : '' }}>50</option>
<option value="100" {{ request('perPage', 5) == '100' ? 'selected' : '' }}>100</option>
<option value="{{ $transfer->total() }}"
{{ request('perPage', 5) == $transfer->total() ? 'selected' : '' }}>Semua</option>
</select>
<input type="hidden" name="search" value="{{ $search }}">
<input type="hidden" name="page" value="{{ request('page', 1) }}">
</form>
</div>
<div class="col-6 d-flex justify-content-end mb-3">
<!-- Fitur search -->
<form method="GET" action="{{ route('dashboard.transfer.index') }}" class="form-inline">
<input type="text" name="search" class="form-control mr-2" placeholder="Cari..."
value="{{ $search }}">
<input type="hidden" name="page" value="1">
<input type="hidden" name="perPage" value="{{ request('perPage', 5) }}">
<button type="submit" class="btn btn-primary">Cari</button>
</form>
</div>
</div>
<div class="table-responsive">
<table class="table table-bordered" width="100%" cellspacing="0">
<thead>
<tr>
<th class="text-center">No</th>
<th>Fix Lot</th>
<th>Nama Customer</th>
<th>Tgl Transfer</th>
<th>Asal Gudang</th>
<th>Tujuan Gudang</th>
<th class="text-center">Action</th>
</tr>
</thead>
<tbody>
@forelse ($transfer as $data_transfer)
<tr>
<td>{{ $i++ }}</td>
<td>{{ optional($data_transfer->peti)->fix_lot }}</td>
<td>{{ optional($data_transfer->customer)->name }}</td>
<td>{{ \Carbon\Carbon::parse($data_transfer->date)->format('d-m-Y') }}</td>
<td>{{ optional($data_transfer->sourceWarehouse)->name }}</td>
<td>{{ optional($data_transfer->destinationWarehouse)->name }}</td>
<td class="text-center">
<a href="{{ route('dashboard.transfer.edit', $data_transfer->id) }}" title="Edit">
<i class="fa fa-edit mr-2" style="font-size: 20px"></i>
</a>
<form action="{{ route('dashboard.transfer.destroy', $data_transfer->id) }}"
method="POST" style="display: inline;">
@csrf
@method('DELETE')
<button type="submit"
onclick="return confirm('Apakah Anda yakin ingin menghapus data ini?')"
title="Delete" style="border: none; background: none; cursor: pointer;">
<i class="fa fa-trash text-danger" style="font-size: 20px"></i>
</button>
</form>
</td>
</tr>
@empty
<tr>
<td colspan="7" class="text-center">Data Kosong</td>
</tr>
@endforelse
</tbody>
</table>
</div>
<div class="row mt-3">
<div class="col-4">
<!-- Tampilkan jumlah data yang ditampilkan -->
@if (!$transfer->isEmpty())
<p class="d-inline-block">Showing {{ $transfer->firstItem() }} to
{{ $transfer->lastItem() }} of
{{ $transfer->total() }} entries</p>
@endif
</div>
<div class="col-8 d-flex justify-content-end">
@if ($transfer->total() > $transfer->perPage())
<nav aria-label="Page navigation">
<ul class="pagination justify-content-center">
<li class="page-item {{ $transfer->onFirstPage() ? 'disabled' : '' }}">
<a class="page-link"
href="{{ $transfer->appends(['perPage' => Request::get('perPage')])->url(1) }}"
aria-label="First">
<span aria-hidden="true">First</span>
</a>
</li>
{{ $transfer->appends(['perPage' => Request::get('perPage')])->links() }}
<li class="page-item {{ $transfer->hasMorePages() ? '' : 'disabled' }}">
<a class="page-link"
href="{{ $transfer->appends(['perPage' => Request::get('perPage')])->url($transfer->lastPage()) }}"
aria-label="Last">
<span aria-hidden="true">Last</span>
</a>
</li>
</ul>
</nav>
@endif
</div>
</div>
</div>
</div>
@endsection