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.
73 lines
2.9 KiB
73 lines
2.9 KiB
@extends('layouts.main') |
|
@section('content') |
|
@include('layouts.components.alert-prompt') |
|
<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">Report Pettern Lot Peti</h5> |
|
</div> |
|
<div class="col-6 text-right"> |
|
<a href="#" class="btn btn-success btn-icon-split ml-auto" target="_blank"> |
|
<span class="text">Cetak PDF</span> |
|
</a> |
|
<a href="{{ route('dashboard.Pettern_Lot_Peti.export') }}" class="btn btn-info btn-icon-split ml-auto" |
|
target="_blank"> |
|
<span class="text">Cetak Exel</span> |
|
</a> |
|
</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>User</th> |
|
<th>Customer</th> |
|
<th>WH</th> |
|
<th>CODE CUSTOMER</th> |
|
<th>TYPE PETI</th> |
|
<th>UKURAN PETI</th> |
|
<th>LOT NO</th> |
|
<th>PACKING NO</th> |
|
<th>FIX LOT</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
@php |
|
$noreport = 1; |
|
@endphp |
|
@forelse ($peti as $data_peti) |
|
<tr> |
|
<td>{{ $noreport++ }}</td> |
|
<td>ISTW</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 class="text-right">{{ $data_peti->packing_no }}</td> |
|
<td>{{ $data_peti->fix_lot }}</td> |
|
</tr> |
|
@empty |
|
<p>Data Kosong</p> |
|
@endforelse |
|
</tbody> |
|
</table> |
|
</div> |
|
</div> |
|
</div> |
|
@endsection
|
|
|