partial update detail opnames page

This commit is contained in:
2025-06-05 15:18:20 +07:00
parent ce0a4718e0
commit d294bb7876
15 changed files with 217 additions and 72 deletions

View File

@@ -0,0 +1,39 @@
@extends('layouts.backapp')
@section('content')
<div class="kt-portlet kt-portlet--mobile" id="kt_blockui_datatable">
<div class="kt-portlet__head kt-portlet__head--lg">
<div class="kt-portlet__head-label">
<span class="kt-portlet__head-icon">
<i class="kt-font-brand flaticon2-list-1"></i>
</span>
<h3 class="kt-portlet__head-title">
Detail Opname
</h3>
</div>
</div>
<div class="kt-portlet__body">
<div class="table-responsive">
<!--begin: Datatable -->
<table class="table table-striped table-bordered table-hover" id="opname-detail-table" data-url="{{ route("opnames.show", $opname->id) }}">
<thead>
<tr>
<th>Tanggal</th>
<th>Pengguna</th>
<th>Produk</th>
<th>Sistem</th>
<th>Fisik</th>
<th>Selisih</th>
</tr>
</thead>
</table>
<!--end: Datatable -->
</div>
</div>
</div>
@endsection
@section('javascripts')
<script src="{{ mix('js/warehouse_management/opnames/detail.js') }}"></script>
@endsection