|
|
|
@ -12,7 +12,220 @@
|
|
|
|
|
|
|
|
|
|
@include('layouts.components.alert-prompt') |
|
|
|
|
@if (auth()->user()->role_id == 1) |
|
|
|
|
<!-- cara data table buatan sendiri --> |
|
|
|
|
<div class="card shadow mb-4"> |
|
|
|
|
<div class="card-header py-3"> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-7"> |
|
|
|
|
<h5 class="m-0 font-weight-bold text-primary mt-2">Data Peti</h5> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-5 d-flex"> |
|
|
|
|
<a href="{{ route('dashboard.peti.create') }}" class="btn btn-success btn-icon-split ml-4"> |
|
|
|
|
<span class="text">Tambah Peti</span> |
|
|
|
|
</a> |
|
|
|
|
<div class="mr-2"> |
|
|
|
|
<form action="{{ route('dashboard.all-pdf.cetakpdf') }}" method="GET" id="pdfForm" |
|
|
|
|
class="ml-2" target="_blank"> |
|
|
|
|
@csrf |
|
|
|
|
<input type="hidden" name="peti_ids" id="peti_ids" value=""> |
|
|
|
|
<button type="submit" class="btn btn-primary">Cetak PDF</button> |
|
|
|
|
</form> |
|
|
|
|
</div> |
|
|
|
|
<a href="#" class="btn btn-info btn-icon-split" data-toggle="modal" |
|
|
|
|
data-target="#importDataModal"> |
|
|
|
|
<span class="text">Import Customer</span> |
|
|
|
|
</a> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="card-body"> |
|
|
|
|
<div class="row mb-3"> |
|
|
|
|
<div class="col-6"> |
|
|
|
|
<!-- Fitur page --> |
|
|
|
|
<form method="GET" action="{{ route('dashboard.peti.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> |
|
|
|
|
<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> |
|
|
|
|
<option value="{{ $peti->total() }}" |
|
|
|
|
{{ request('perPage') == $peti->total() ? 'selected' : '' }}>Semua</option> |
|
|
|
|
</select> |
|
|
|
|
</form> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-6 d-flex justify-content-end"> |
|
|
|
|
<!-- Fitur search --> |
|
|
|
|
<form method="GET" action="{{ route('dashboard.peti.index') }}" class="form-inline"> |
|
|
|
|
<input type="text" name="search" class="form-control mr-2" placeholder="Cari..."> |
|
|
|
|
<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" style="width: 10px">No</th> |
|
|
|
|
<th><input type="checkbox" class="checkbox " id="selectAll"></th> |
|
|
|
|
<th>Fix Lot</th> |
|
|
|
|
<th>User</th> |
|
|
|
|
<th>Customer</th> |
|
|
|
|
<th>WH</th> |
|
|
|
|
<th>Kode Customer</th> |
|
|
|
|
<th>Tipe Peti</th> |
|
|
|
|
<th>Ukuran Peti</th> |
|
|
|
|
<th>Lot No</th> |
|
|
|
|
<th>Kondisi Peti</th> |
|
|
|
|
<th>Packing No</th> |
|
|
|
|
<th>Status</th> |
|
|
|
|
<th class="text-center">Action</th> |
|
|
|
|
</tr> |
|
|
|
|
</thead> |
|
|
|
|
<tbody> |
|
|
|
|
@forelse ($peti as $data_peti) |
|
|
|
|
@if ($search) |
|
|
|
|
@if (stripos($data_peti->fix_lot, $search) !== false || |
|
|
|
|
stripos($data_peti->created_by, $search) !== false || |
|
|
|
|
stripos($data_peti->customer->name, $search) !== false || |
|
|
|
|
stripos($data_peti->warehouse->name, $search) !== false || |
|
|
|
|
stripos($data_peti->customer->code_customer, $search) !== false || |
|
|
|
|
stripos($data_peti->tipe_peti->type, $search) !== false || |
|
|
|
|
stripos($data_peti->tipe_peti->size_peti, $search) !== false || |
|
|
|
|
stripos($data_peti->customer->lot_no, $search) !== false || |
|
|
|
|
stripos($data_peti->kondisipeti->nama_kondisi, $search) !== false || |
|
|
|
|
stripos($data_peti->packing_no, $search) !== false || |
|
|
|
|
stripos($data_peti->status, $search) !== false) |
|
|
|
|
<!-- Tampilkan data pencarian --> |
|
|
|
|
<tr> |
|
|
|
|
<td>{{ $i++ }}</td> |
|
|
|
|
<td><input type="checkbox" class="checkbox" value="{{ $data_peti->id }}"></td> |
|
|
|
|
<td>{{ $data_peti->fix_lot }}</td> |
|
|
|
|
<td>{{ $data_peti->created_by }}</td> |
|
|
|
|
<td>{{ $data_peti->customer->name }}</td> |
|
|
|
|
<td>{{ $data_peti->warehouse->name }}</td> |
|
|
|
|
<td>{{ $data_peti->customer->code_customer }}</td> |
|
|
|
|
<td>{{ $data_peti->tipe_peti->type }}</td> |
|
|
|
|
<td>{{ $data_peti->tipe_peti->size_peti }}</td> |
|
|
|
|
<td>{{ $data_peti->customer->lot_no }}</td> |
|
|
|
|
<td>{{ $data_peti->kondisipeti->nama_kondisi }}</td> |
|
|
|
|
<td class="text-right">{{ $data_peti->packing_no }}</td> |
|
|
|
|
<td>{{ $data_peti->status }}</td> |
|
|
|
|
<td class="text-center"> |
|
|
|
|
<a href="{{ route('dashboard.peti.show', [$data_peti->id]) }}"> |
|
|
|
|
<i class="fa fa-eye mr-2" style="font-size: 20px"></i> |
|
|
|
|
</a> |
|
|
|
|
<a href="{{ route('dashboard.peti.edit', [$data_peti->id]) }}"> |
|
|
|
|
<i class="fa fa-edit mr-2" style="font-size: 20px"></i> |
|
|
|
|
</a> |
|
|
|
|
<form action="{{ route('dashboard.peti.destroy', $data_peti->id) }}" |
|
|
|
|
method="POST" style="display: inline;"> |
|
|
|
|
@csrf |
|
|
|
|
@method('DELETE') |
|
|
|
|
<button type="submit" |
|
|
|
|
onclick="return confirm('Apakah Anda yakin ingin menghapus data ini?')" |
|
|
|
|
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>{{ $i++ }}</td> |
|
|
|
|
<td><input type="checkbox" class="checkbox" value="{{ $data_peti->id }}"></td> |
|
|
|
|
<td>{{ $data_peti->fix_lot }}</td> |
|
|
|
|
<td>{{ $data_peti->created_by }}</td> |
|
|
|
|
<td>{{ $data_peti->customer->name }}</td> |
|
|
|
|
<td>{{ $data_peti->warehouse->name }}</td> |
|
|
|
|
<td>{{ $data_peti->customer->code_customer }}</td> |
|
|
|
|
<td>{{ $data_peti->tipe_peti->type }}</td> |
|
|
|
|
<td>{{ $data_peti->tipe_peti->size_peti }}</td> |
|
|
|
|
<td>{{ $data_peti->customer->lot_no }}</td> |
|
|
|
|
<td>{{ $data_peti->kondisipeti->nama_kondisi }}</td> |
|
|
|
|
<td class="text-right">{{ $data_peti->packing_no }}</td> |
|
|
|
|
<td>{{ $data_peti->status }}</td> |
|
|
|
|
<td class="text-center"> |
|
|
|
|
<a href="{{ route('dashboard.peti.show', [$data_peti->id]) }}"> |
|
|
|
|
<i class="fa fa-eye mr-2" style="font-size: 20px"></i> |
|
|
|
|
</a> |
|
|
|
|
<a href="{{ route('dashboard.peti.edit', [$data_peti->id]) }}"> |
|
|
|
|
<i class="fa fa-edit mr-2" style="font-size: 20px"></i> |
|
|
|
|
</a> |
|
|
|
|
<form action="{{ route('dashboard.peti.destroy', $data_peti->id) }}" |
|
|
|
|
method="POST" style="display: inline;"> |
|
|
|
|
@csrf |
|
|
|
|
@method('DELETE') |
|
|
|
|
<button type="submit" |
|
|
|
|
onclick="return confirm('Apakah Anda yakin ingin menghapus data ini?')" |
|
|
|
|
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="14" 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 (!$peti->isEmpty()) |
|
|
|
|
<p class="d-inline-block">Showing {{ $peti->firstItem() }} to |
|
|
|
|
{{ $peti->lastItem() }} of |
|
|
|
|
{{ $peti->total() }} entries</p> |
|
|
|
|
@endif |
|
|
|
|
</div> |
|
|
|
|
<div class="col-8 d-flex justify-content-end"> |
|
|
|
|
@if ($peti->total() > $peti->perPage()) |
|
|
|
|
<nav aria-label="Page navigation"> |
|
|
|
|
<ul class="pagination justify-content-center"> |
|
|
|
|
<li class="page-item {{ $peti->onFirstPage() ? 'disabled' : '' }}"> |
|
|
|
|
<a class="page-link" |
|
|
|
|
href="{{ $peti->appends(['perPage' => Request::get('perPage')])->url(1) }}" |
|
|
|
|
aria-label="First"> |
|
|
|
|
<span aria-hidden="true">First</span> |
|
|
|
|
</a> |
|
|
|
|
</li> |
|
|
|
|
{{ $peti->appends(['perPage' => Request::get('perPage')])->links() }} |
|
|
|
|
<li class="page-item {{ $peti->hasMorePages() ? '' : 'disabled' }}"> |
|
|
|
|
<a class="page-link" |
|
|
|
|
href="{{ $peti->appends(['perPage' => Request::get('perPage')])->url($peti->lastPage()) }}" |
|
|
|
|
aria-label="Last"> |
|
|
|
|
<span aria-hidden="true">Last</span> |
|
|
|
|
</a> |
|
|
|
|
</li> |
|
|
|
|
</ul> |
|
|
|
|
</nav> |
|
|
|
|
@endif |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<!-- cara data table bostrap--> |
|
|
|
|
{{-- <div class="card shadow mb-4"> |
|
|
|
|
<div class="card-header py-3"> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-7"> |
|
|
|
@ -39,7 +252,7 @@
|
|
|
|
|
</div> |
|
|
|
|
<div class="card-body"> |
|
|
|
|
<div class="table-responsive"> |
|
|
|
|
<table class="table table-bordered" id="tablebarang" width="100%" cellspacing="0"> |
|
|
|
|
<table class="table table-bordered" id="tablePeti" width="100%" cellspacing="0"> |
|
|
|
|
<thead> |
|
|
|
|
<tr> |
|
|
|
|
<th class="text-center" style="width: 10px">No</th> |
|
|
|
@ -60,11 +273,11 @@
|
|
|
|
|
</thead> |
|
|
|
|
<tbody> |
|
|
|
|
@php |
|
|
|
|
$nopeti = 1; |
|
|
|
|
$i = 1; |
|
|
|
|
@endphp |
|
|
|
|
@forelse ($peti as $data_peti) |
|
|
|
|
<tr> |
|
|
|
|
<td class="text-center">{{ $nopeti++ }}</td> |
|
|
|
|
<td>{{ $i++ }}</td> |
|
|
|
|
<td><input type="checkbox" class="checkbox" value="{{ $data_peti->id }}"></td> |
|
|
|
|
<td>{{ $data_peti->fix_lot }}</td> |
|
|
|
|
<td>{{ $data_peti->created_by }}</td> |
|
|
|
@ -100,10 +313,9 @@
|
|
|
|
|
@endforelse |
|
|
|
|
</tbody> |
|
|
|
|
</table> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> --}} |
|
|
|
|
@elseif (auth()->user()->role_id == 2) |
|
|
|
|
@include('pages.user.Master_Data.Manajemen_Peti.Peti.index') |
|
|
|
|
@endif |
|
|
|
|