56 lines
1.8 KiB
PHP
56 lines
1.8 KiB
PHP
@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-plus"></i>
|
|
</span>
|
|
<h3 class="kt-portlet__head-title">
|
|
Tambah Opname
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="kt-portlet__body">
|
|
<form action="{{ route('opnames.store') }}" method="POST" id="opnameForm">
|
|
@csrf
|
|
|
|
<div class="form-group">
|
|
<label for="product"><strong>Produk</strong></label>
|
|
<input type="text" class="form-control" name="product" />
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="dealer"><strong>Dealer</strong></label>
|
|
<input type="text" class="form-control" name="dealer" />
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="system_quantity"><strong>Total Sistem</strong></label>
|
|
<input type="number" class="form-control" name="system_quantity" />
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="phisycal_quantity"><strong>Total Sistem</strong></label>
|
|
<input type="number" class="form-control" name="phisycal_quantity" />
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="difference"><strong>Perbedaan</strong></label>
|
|
<input type="number" class="form-control" name="difference" />
|
|
</div>
|
|
|
|
<div class="form-group mt-4">
|
|
<button type="submit" class="btn btn-primary">Simpan</button>
|
|
<a href="{{ route('opnames.index') }}" class="btn btn-secondary">Batal</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@section('javascripts')
|
|
<script src="{{mix('js/warehouse_management/stock_opnames/create.js')}}"></script>
|
|
@endsection |