dashboard-admin/resources/views/Admin/refund/detail-refund.blade.php
jilhanhaura 0d547ab4c3 Admin
2023-08-21 11:00:49 +07:00

51 lines
2.6 KiB
PHP

@extends('Admin.layout.main')
@section('content')
<div class="main-content">
<section class="section">
<div class="section-header">
<h1>Detail</h1>
<div class="section-header-breadcrumb">
<div class="breadcrumb-item active"><a href="#">Dashboard</a></div>
<div class="breadcrumb-item">Refund</div>
<div class="breadcrumb-item">History</div>
<div class="breadcrumb-item">Detail</div>
</div>
</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>
<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>
<div class="d-flex justify-content-center">
<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>
@endforeach
</div>
</div>
</section>
</div>
@include('Admin.refund.next-detail-refund')
@endsection