update dashboard
This commit is contained in:
parent
743cf7e290
commit
edb574db71
@ -54,7 +54,7 @@ class Refund
|
||||
"customer" => "hantu",
|
||||
"seller" => "dado",
|
||||
"total" => "Rp. 45000",
|
||||
"date" => "June 19, 2023 ",
|
||||
"date" => "2023-08-14 ",
|
||||
"status"=>"Refunds Refused"
|
||||
]
|
||||
];
|
||||
@ -65,7 +65,7 @@ class Refund
|
||||
"customer" => "hantu",
|
||||
"seller" => "dado",
|
||||
"total" => "Rp. 45000",
|
||||
"date" => "June 19, 2023 ",
|
||||
"date" => "2023-08-14 ",
|
||||
"complaint" =>" Lorem ipsum dolor sit, amet consectetur adipisicing elit. Aliquam inventore, sit enim iure itaque fuga voluptates alias, eveniet quos ex reiciendis! Dolore mollitia ea inventore, excepturi hic fugiat id, magnam molestias sint ut enim repellendus, cum dolorum dolores sapiente adipisci tempora nihil omnis! Accusantium, non perspiciatis? Molestias modi debitis perferendis reprehenderit excepturi voluptates? Sit incidunt consequuntur iusto odit sapiente inventore nemo commodi, quam vero magnam temporibus ducimus praesentium assumenda blanditiis possimus perferendis totam placeat maiores. Quae ut id libero atque pariatur veritatis rerum culpa tempore consequatur quod corrupti corporis nobis quia repellendus iste quidem illum, voluptates aspernatur cumque officia. Tenetur.",
|
||||
"image"=>"assets/images/dashboard/img_2.jpg"
|
||||
]
|
||||
|
@ -14,37 +14,52 @@
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<div class="card">
|
||||
{{-- <div class="card-header">
|
||||
<h2>Detail Refund</h2>
|
||||
</div> --}}
|
||||
@foreach ($detail_refund as $DetailRefund)
|
||||
<div class="card-body p-0">
|
||||
<div class="container">
|
||||
<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">
|
||||
<img src="assets/images/dashboard/img_3.jpg" alt="Return Image" width="300">
|
||||
<img src="assets/images/dashboard/img_4.jpg" alt="Return Image" width="300"><br><br>
|
||||
<p><strong>ID Order:</strong> {{ $DetailRefund['orderId'] }}</p>
|
||||
<p><strong>Customer Name:</strong> {{ $DetailRefund['customer'] }}</p>
|
||||
<p><strong>Seller Name:</strong> {{ $DetailRefund['seller'] }}</p>
|
||||
<p><strong>Total:</strong> {{ $DetailRefund['total'] }}</p>
|
||||
<p><strong>Due Date:</strong> {{ $DetailRefund['date'] }}</p>
|
||||
<p class="justified-text"><strong>Reason Complaint:</strong>
|
||||
{{ $DetailRefund['complaint'] }}</p>
|
||||
<img src="assets/images/dashboard/img_4.jpg" alt="Return Image" width="300">
|
||||
<br><br>
|
||||
<div class="row">
|
||||
<div class="col-2"><strong>ID Order</strong></div>
|
||||
<div class="col">{{ $DetailRefund['orderId'] }}</div>
|
||||
</div><br>
|
||||
<div class="row">
|
||||
<div class="col-2"><strong>Customer Name</strong></div>
|
||||
<div class="col">{{ $DetailRefund['customer'] }}</div>
|
||||
</div><br>
|
||||
<div class="row">
|
||||
<div class="col-2"><strong>Seller Name</strong></div>
|
||||
<div class="col">{{ $DetailRefund['seller'] }}</div>
|
||||
</div><br>
|
||||
<div class="row">
|
||||
<div class="col-2"><strong>Total</strong></div>
|
||||
<div class="col">{{ $DetailRefund['total'] }}</div>
|
||||
</div><br>
|
||||
<div class="row">
|
||||
<div class="col-2"><strong>Due Date</strong></div>
|
||||
<div class="col">{{ $DetailRefund['date'] }}</div>
|
||||
</div><br>
|
||||
<div class="row">
|
||||
<div class="col-2"><strong>Reason Complaint</strong></div>
|
||||
<div class="col justified-text">{{ $DetailRefund['complaint'] }}</div>
|
||||
</div>
|
||||
|
||||
<div class="d-flex justify-content-center">
|
||||
<div class="d-flex justify-content-center mt-3">
|
||||
<a href="#" data-toggle="modal" data-target="#ModalRefund"
|
||||
class="btn btn-primary mx-1">Accept</a>
|
||||
<a href="/history_refund" class="btn btn-danger mx-1">Decline</a>
|
||||
</div>
|
||||
|
||||
</div><br>
|
||||
</div>
|
||||
<br>
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</section>
|
||||
</div>
|
||||
@include('Admin.refund.next-detail-refund')
|
||||
|
Loading…
Reference in New Issue
Block a user