update
This commit is contained in:
parent
aedea290c4
commit
c23846032d
@ -4206,6 +4206,4 @@ body:not(.sidebar-mini) .sidebar-style-2 .sidebar-menu li.active ul.dropdown-men
|
|||||||
top: 0;
|
top: 0;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=style.css.map */
|
|
@ -6,7 +6,7 @@
|
|||||||
<li><a href="#" data-toggle="search" class="nav-link nav-link-lg d-sm-none"><i
|
<li><a href="#" data-toggle="search" class="nav-link nav-link-lg d-sm-none"><i
|
||||||
class="fas fa-search"></i></a></li>
|
class="fas fa-search"></i></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="search-element">
|
{{-- <div class="search-element">
|
||||||
<input class="form-control" type="search" placeholder="Search" aria-label="Search" data-width="250">
|
<input class="form-control" type="search" placeholder="Search" aria-label="Search" data-width="250">
|
||||||
<button class="btn" type="submit"><i class="fas fa-search"></i></button>
|
<button class="btn" type="submit"><i class="fas fa-search"></i></button>
|
||||||
<div class="search-backdrop"></div>
|
<div class="search-backdrop"></div>
|
||||||
@ -70,7 +70,7 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div> --}}
|
||||||
</form>
|
</form>
|
||||||
<ul class="navbar-nav navbar-right">
|
<ul class="navbar-nav navbar-right">
|
||||||
<li class="dropdown dropdown-list-toggle"><a href="#" data-toggle="dropdown"
|
<li class="dropdown dropdown-list-toggle"><a href="#" data-toggle="dropdown"
|
||||||
|
@ -20,8 +20,10 @@
|
|||||||
<p><strong>Image/Video: </strong></p>
|
<p><strong>Image/Video: </strong></p>
|
||||||
<img src="assets/images/dashboard/img_2.jpg" alt="Return Image" width="300"><br><br>
|
<img src="assets/images/dashboard/img_2.jpg" alt="Return Image" width="300"><br><br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="d-flex justify-content-center">
|
<div class="d-flex justify-content-center">
|
||||||
<a href="?showRefund=true" class="btn btn-primary mx-1">Accept</a>
|
<a href="/next-detail-refund" class="btn btn-primary mx-1">Accept</a>
|
||||||
<a href="/history_refund" class="btn btn-danger mx-1">Decline</a>
|
<a href="/history_refund" class="btn btn-danger mx-1">Decline</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -29,6 +31,7 @@
|
|||||||
</div>
|
</div>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
326
resources/views/refund/next-detail-refund.blade.php
Normal file
326
resources/views/refund/next-detail-refund.blade.php
Normal file
@ -0,0 +1,326 @@
|
|||||||
|
@extends('layout.main')
|
||||||
|
@section('content')
|
||||||
|
<div class="main-content">
|
||||||
|
<section class="section">
|
||||||
|
<div class="col-xl-12">
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header pb-0">
|
||||||
|
<div class="d-flex justify-content-between">
|
||||||
|
<h4 class="card-title mg-b-2 mt-2">Tabel Manajemen Petugas</h4>
|
||||||
|
<i class="mdi mdi-dots-horizontal text-gray"></i>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
<div class="table-responsive">
|
||||||
|
<div class="d-flex justify-content-end mb-3" style="margin-top: -17px;">
|
||||||
|
<div class="col-sm-6 col-md-4 col-xl-3 mg-t-20">
|
||||||
|
<a class="modal-effect btn btn-success btn-block mb-3"
|
||||||
|
data-bs-effect="effect-flip-Vertical" data-bs-toggle="modal"
|
||||||
|
href="#modal-tambah-petugas"><i class='bx bxs-add-to-queue'></i>
|
||||||
|
Tambah Data </a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<table id="table-petugas" class="display">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>NO</th>
|
||||||
|
<th>Username</th>
|
||||||
|
<th>Email</th>
|
||||||
|
<th>Alamat</th>
|
||||||
|
<th>No.Telepon</th>
|
||||||
|
<th>Aksi</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@push('css')
|
||||||
|
<style>
|
||||||
|
.card {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
min-width: 0;
|
||||||
|
word-wrap: break-word;
|
||||||
|
background: #fff;
|
||||||
|
background-clip: border-box;
|
||||||
|
border-radius: 10px;
|
||||||
|
border: 1px solid #fff;
|
||||||
|
margin-block-end: 1.3rem;
|
||||||
|
box-shadow: 6px 11px 41px -28px #796eb1;
|
||||||
|
-webkit-box-shadow: 6px 11px 41px -28px #796eb1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card>hr {
|
||||||
|
margin-inline-end: 0;
|
||||||
|
margin-inline-start: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card>.list-group:first-child .list-group-item:first-child {
|
||||||
|
border-start-start-radius: 3px;
|
||||||
|
border-start-end-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card>.list-group:last-child .list-group-item:last-child {
|
||||||
|
border-end-end-radius: 3px;
|
||||||
|
border-end-start-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-body {
|
||||||
|
flex: 1 1 auto;
|
||||||
|
padding: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-title {
|
||||||
|
margin-block-end: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-subtitle {
|
||||||
|
margin-block-start: -0.375rem;
|
||||||
|
margin-block-end: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-text:last-child {
|
||||||
|
margin-block-end: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-link:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-link+.card-link {
|
||||||
|
margin-inline-start: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-header {
|
||||||
|
padding: 0.75rem 1.25rem;
|
||||||
|
margin-block-end: 0;
|
||||||
|
background-color: white;
|
||||||
|
border-block-end: 1px solid #ededf5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-header:first-child {
|
||||||
|
border-radius: 2px 2px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-header+.list-group .list-group-item:first-child {
|
||||||
|
border-block-start: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-footer {
|
||||||
|
padding: 0.75rem 1.25rem;
|
||||||
|
background-color: transparent;
|
||||||
|
border-block-start: 1px solid #ededf5;
|
||||||
|
border-end-start-radius: 6px !important;
|
||||||
|
border-end-end-radius: 6px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-footer:last-child {
|
||||||
|
border-radius: 0 0 2px 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-header-tabs {
|
||||||
|
margin-inline-end: -0.625rem;
|
||||||
|
margin-block-end: -0.75rem;
|
||||||
|
margin-inline-start: -0.625rem;
|
||||||
|
border-block-end: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-header-pills {
|
||||||
|
margin-inline-end: -0.625rem;
|
||||||
|
margin-inline-start: -0.625rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-img-overlay {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
inset-inline-end: 0;
|
||||||
|
bottom: 0;
|
||||||
|
inset-inline-start: 0;
|
||||||
|
padding: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-img {
|
||||||
|
width: 100%;
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-img-top {
|
||||||
|
width: 100%;
|
||||||
|
border-start-start-radius: 6px;
|
||||||
|
border-start-end-radius: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-img-bottom {
|
||||||
|
width: 100%;
|
||||||
|
border-end-end-radius: 5px;
|
||||||
|
border-end-start-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-deck {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-deck .card {
|
||||||
|
margin-block-end: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 576px) {
|
||||||
|
.card-deck {
|
||||||
|
flex-flow: row wrap;
|
||||||
|
margin-inline-end: -15px;
|
||||||
|
margin-inline-start: -15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-deck .card {
|
||||||
|
display: flex;
|
||||||
|
flex: 1 0 0%;
|
||||||
|
flex-direction: column;
|
||||||
|
margin-inline-end: 15px;
|
||||||
|
margin-block-end: 0;
|
||||||
|
margin-inline-start: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-group {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-group>.card {
|
||||||
|
margin-block-end: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 576px) {
|
||||||
|
.card-group {
|
||||||
|
flex-flow: row wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-group>.card {
|
||||||
|
flex: 1 0 0%;
|
||||||
|
margin-block-end: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-group>.card+.card {
|
||||||
|
margin-inline-start: 0;
|
||||||
|
border-inline-start: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-group>.card:not(:last-child) {
|
||||||
|
border-start-end-radius: 0;
|
||||||
|
border-end-end-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-group>.card:not(:last-child) .card-img-top,
|
||||||
|
.card-group>.card:not(:last-child) .card-header {
|
||||||
|
border-start-end-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-group>.card:not(:last-child) .card-img-bottom,
|
||||||
|
.card-group>.card:not(:last-child) .card-footer {
|
||||||
|
border-end-end-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-group>.card:not(:first-child) {
|
||||||
|
border-start-start-radius: 0;
|
||||||
|
border-end-start-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-group>.card:not(:first-child) .card-img-top,
|
||||||
|
.card-group>.card:not(:first-child) .card-header {
|
||||||
|
border-start-start-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-group>.card:not(:first-child) .card-img-bottom,
|
||||||
|
.card-group>.card:not(:first-child) .card-footer {
|
||||||
|
border-end-start-radius: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-columns .card {
|
||||||
|
margin-block-end: 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 576px) {
|
||||||
|
.card-columns {
|
||||||
|
column-count: 3;
|
||||||
|
column-gap: 1.25rem;
|
||||||
|
orphans: 1;
|
||||||
|
widows: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-columns .card {
|
||||||
|
display: inline-block;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion>.card {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion>.card:not(:first-of-type) .card-header:first-child {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion>.card:not(:first-of-type):not(:last-of-type) {
|
||||||
|
border-block-end: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion>.card:first-of-type {
|
||||||
|
border-block-end: 0;
|
||||||
|
border-end-end-radius: 0;
|
||||||
|
border-end-start-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion>.card:last-of-type {
|
||||||
|
border-start-start-radius: 0;
|
||||||
|
border-start-end-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.accordion>.card .card-header {
|
||||||
|
margin-block-end: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-sub-title {
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-body> :last-child {
|
||||||
|
margin-block-end: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-table tbody tr td {
|
||||||
|
padding: 16px 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-img-start {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border-start-start-radius: 4px;
|
||||||
|
border-end-start-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-img-end {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border-end-end-radius: 4px;
|
||||||
|
border-start-end-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.img-fluid {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
@endpush
|
||||||
|
@endsection
|
@ -1,15 +1,32 @@
|
|||||||
@extends('layout.main')
|
@extends('layout.main')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div class="main-content">
|
<div class="main-content">
|
||||||
<section class="section">
|
<section class="section">
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<h2>List Transaction</h2>
|
<h2 class="mb-4">List Transaction</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body p-0">
|
<div class="d-flex justify-content-between align-items-center p-4">
|
||||||
|
<div class="d-flex align-items-center">
|
||||||
|
<span class="mb-0 ml-2">Show:</span>
|
||||||
|
<select class="form-select ml-2">
|
||||||
|
<option>10</option>
|
||||||
|
<option>25</option>
|
||||||
|
<option>50</option>
|
||||||
|
<option>100</option>
|
||||||
|
</select>
|
||||||
|
<span class="ml-2">entries</span>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex align-items-center">
|
||||||
|
<h5 class="mb-0 mr-2">Search:</h5>
|
||||||
|
<input type="text" id="searchInput" placeholder="Search">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
<div class="table-responsive table-invoice">
|
<div class="table-responsive table-invoice">
|
||||||
<table class="table table-striped">
|
<table class="table table-striped p-4">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Order ID</th>
|
<th>Order ID</th>
|
||||||
<th>Customer</th>
|
<th>Customer</th>
|
||||||
@ -18,7 +35,6 @@
|
|||||||
<th>Due Date</th>
|
<th>Due Date</th>
|
||||||
<th>Status</th>
|
<th>Status</th>
|
||||||
<th class="text-center">Action</th>
|
<th class="text-center">Action</th>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
@foreach ($transaction as $transactions)
|
@foreach ($transaction as $transactions)
|
||||||
<tr>
|
<tr>
|
||||||
@ -36,15 +52,13 @@
|
|||||||
<a href="#" class="btn btn-danger mx-1">Delete</a>
|
<a href="#" class="btn btn-danger mx-1">Delete</a>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</section>
|
||||||
</div>
|
</div>
|
||||||
@endsection
|
@endsection
|
||||||
|
@ -51,5 +51,10 @@ Route::get('/detail_refund',function() {
|
|||||||
"detail_refund"=> Refund::DetailRefund()
|
"detail_refund"=> Refund::DetailRefund()
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
Route::get('/next_detail_refund',function() {
|
||||||
|
return view('refund/next-detail-refund',[
|
||||||
|
'name'=>"Jilhan Haura"
|
||||||
|
]);
|
||||||
|
});
|
||||||
Route::post('/refund-accept/{id}', 'ReturnItemController@acceptRefund')->name('refund/detail-refund/refund.accept');
|
Route::post('/refund-accept/{id}', 'ReturnItemController@acceptRefund')->name('refund/detail-refund/refund.accept');
|
||||||
Route::get('/refund-decline/{id}', 'ReturnItemController@declineRefund')->name('refund/detail-refund/refund.decline');
|
Route::get('/refund-decline/{id}', 'ReturnItemController@declineRefund')->name('refund/detail-refund/refund.decline');
|
Loading…
Reference in New Issue
Block a user