|
|
|
@ -31,35 +31,35 @@
|
|
|
|
|
<form method="GET" action="{{ route('dashboard.peminjaman.index') }}"> |
|
|
|
|
<label for="perPage">Tampilkan:</label> |
|
|
|
|
<select id="perPage" name="perPage" class="form-select" onchange="this.form.submit()"> |
|
|
|
|
<option value="5" {{ request('perPage') == '5' ? 'selected' : '' }}>5</option> |
|
|
|
|
<option value="10" {{ request('perPage') == '10' ? 'selected' : '' }}>10 |
|
|
|
|
<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="500" {{ request('perPage', 5) == '500' ? 'selected' : '' }}>500</option> |
|
|
|
|
<option value="1000" {{ request('perPage', 5) == '1000' ? 'selected' : '' }}>1000</option> |
|
|
|
|
<option value="2500" {{ request('perPage', 5) == '2500' ? 'selected' : '' }}>2500 |
|
|
|
|
</option> |
|
|
|
|
<option value="25" {{ request('perPage') == '25' ? 'selected' : '' }}>25 |
|
|
|
|
</option> |
|
|
|
|
<option value="50" {{ request('perPage') == '50' ? 'selected' : '' }}>50 |
|
|
|
|
</option> |
|
|
|
|
<option value="100" {{ request('perPage') == '100' ? 'selected' : '' }}>100 |
|
|
|
|
</option> |
|
|
|
|
<option value="500" {{ request('perPage') == '500' ? 'selected' : '' }}>500 |
|
|
|
|
</option> |
|
|
|
|
<option value="1000" {{ request('perPage') == '1000' ? 'selected' : '' }}>1000 |
|
|
|
|
</option> |
|
|
|
|
<option value="2500" {{ request('perPage') == '2500' ? 'selected' : '' }}>2500 |
|
|
|
|
</option> |
|
|
|
|
<option value="5000" {{ request('perPage') == '5000' ? 'selected' : '' }}>5000 |
|
|
|
|
<option value="5000" {{ request('perPage', 5) == '5000' ? 'selected' : '' }}>5000 |
|
|
|
|
</option> |
|
|
|
|
<option value="{{ $peminjaman->total() }}" |
|
|
|
|
{{ request('perPage') == $peminjaman->total() ? 'selected' : '' }}>Semua</option> |
|
|
|
|
{{ request('perPage', 5) == $peminjaman->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"> |
|
|
|
|
<div class="col-6 d-flex justify-content-end mb-3"> |
|
|
|
|
<!-- Fitur search --> |
|
|
|
|
<form method="GET" action="{{ route('dashboard.peminjaman.index') }}" class="form-inline"> |
|
|
|
|
<input type="text" name="search" class="form-control mr-2" placeholder="Cari..."> |
|
|
|
|
<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"> |
|
|
|
@ -75,97 +75,12 @@
|
|
|
|
|
<th class="text-center">Action</th> |
|
|
|
|
</tr> |
|
|
|
|
</thead> |
|
|
|
|
{{-- <tbody> |
|
|
|
|
@php |
|
|
|
|
$no_peminjaman = 1; |
|
|
|
|
@endphp |
|
|
|
|
@forelse ($peminjaman as $data_peminjaman) |
|
|
|
|
@if ($data_peminjaman->enter_warehouse == null) |
|
|
|
|
<tr> |
|
|
|
|
<td class="text-center">{{ $no_peminjaman++ }}</td> |
|
|
|
|
<td>{{ $data_peminjaman->peti->fix_lot }}</td> |
|
|
|
|
<td>{{ $data_peminjaman->peti->customer->name }}</td> |
|
|
|
|
<td>{{ $data_peminjaman->peti->customer->code_customer }} - |
|
|
|
|
{{ $data_peminjaman->peti->tipe_peti->type }}</td> |
|
|
|
|
<td>{{ \Carbon\Carbon::parse($data_peminjaman->exit_at)->format('d/m/Y') }}</td> |
|
|
|
|
<td>{{ $data_peminjaman->exit_pic }}</td> |
|
|
|
|
<td>{{ $data_peminjaman->warehouse->name }}</td> |
|
|
|
|
<td class="text-center"> |
|
|
|
|
<a href="{{ route('dashboard.peminjaman.pengembalian', $data_peminjaman->id) }}" |
|
|
|
|
title="Pengembalian"> |
|
|
|
|
<i class="fa fa-reply mr-2" style="font-size: 20px"></i> |
|
|
|
|
</a> |
|
|
|
|
<a href="{{ route('dashboard.peminjaman.edit', $data_peminjaman->id) }}" |
|
|
|
|
title="Edit"> |
|
|
|
|
<i class="fa fa-edit mr-2" style="font-size: 20px"></i> |
|
|
|
|
</a> |
|
|
|
|
<form action="{{ route('dashboard.peminjaman.destroy', $data_peminjaman->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> |
|
|
|
|
@endif |
|
|
|
|
@empty |
|
|
|
|
<tr> |
|
|
|
|
<td colspan="8" class="text-center">Data Kosong</td> |
|
|
|
|
</tr> |
|
|
|
|
@endforelse |
|
|
|
|
</tbody> --}} |
|
|
|
|
|
|
|
|
|
<tbody> |
|
|
|
|
@php |
|
|
|
|
$no_peminjaman = 1; |
|
|
|
|
@endphp |
|
|
|
|
@forelse ($peminjaman as $data_peminjaman) |
|
|
|
|
@if ($search) |
|
|
|
|
@if (stripos($data_peminjaman->peti->fix_lot, $search) !== false || |
|
|
|
|
stripos($data_peminjaman->peti->customer->name, $search) !== false || |
|
|
|
|
stripos($data_peminjaman->peti->customer->code_customer, $search) !== false || |
|
|
|
|
stripos($data_peminjaman->peti->tipe_peti->type, $search) !== false || |
|
|
|
|
stripos($data_peminjaman->exit_at, $search) !== false || |
|
|
|
|
stripos($data_peminjaman->exit_pic, $search) !== false || |
|
|
|
|
stripos($data_peminjaman->warehouse->name, $search) !== false) |
|
|
|
|
<!-- Tampilkan data pencarian --> |
|
|
|
|
<tr> |
|
|
|
|
<td class="text-center">{{ $no_peminjaman++ }}</td> |
|
|
|
|
<td>{{ $data_peminjaman->peti->fix_lot }}</td> |
|
|
|
|
<td>{{ $data_peminjaman->peti->customer->name }}</td> |
|
|
|
|
<td>{{ $data_peminjaman->peti->customer->code_customer }} - |
|
|
|
|
{{ $data_peminjaman->peti->tipe_peti->type }}</td> |
|
|
|
|
<td>{{ \Carbon\Carbon::parse($data_peminjaman->exit_at)->format('d/m/Y') }}</td> |
|
|
|
|
<td>{{ $data_peminjaman->exit_pic }}</td> |
|
|
|
|
<td>{{ $data_peminjaman->warehouse->name }}</td> |
|
|
|
|
<td class="text-center"> |
|
|
|
|
<a href="{{ route('dashboard.peminjaman.pengembalian', $data_peminjaman->id) }}" |
|
|
|
|
title="Pengembalian"> |
|
|
|
|
<i class="fa fa-reply mr-2" style="font-size: 20px"></i> |
|
|
|
|
</a> |
|
|
|
|
<a href="{{ route('dashboard.peminjaman.edit', $data_peminjaman->id) }}" |
|
|
|
|
title="Edit"> |
|
|
|
|
<i class="fa fa-edit mr-2" style="font-size: 20px"></i> |
|
|
|
|
</a> |
|
|
|
|
<form |
|
|
|
|
action="{{ route('dashboard.peminjaman.destroy', $data_peminjaman->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> |
|
|
|
|
@endif |
|
|
|
|
@else |
|
|
|
|
<!-- Tampilkan semua data jika tidak ada pencarian --> |
|
|
|
|
<tr> |
|
|
|
|
<td class="text-center">{{ $no_peminjaman++ }}</td> |
|
|
|
|
<td>{{ $data_peminjaman->peti->fix_lot }}</td> |
|
|
|
@ -196,7 +111,6 @@
|
|
|
|
|
</form> |
|
|
|
|
</td> |
|
|
|
|
</tr> |
|
|
|
|
@endif |
|
|
|
|
@empty |
|
|
|
|
<tr> |
|
|
|
|
<td colspan="8" class="text-center">Data Kosong</td> |
|
|
|
|