100 lines
4.6 KiB
PHP
100 lines
4.6 KiB
PHP
@extends('layouts.admin')
|
|
|
|
@section('title', 'Riwayat Pesanan')
|
|
|
|
@section('content')
|
|
<section class="section">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
|
|
<div class="nav nav-pills nav-fill mb-4" id="v-pills-tab" role="tablist" aria-orientation="horizontal">
|
|
<a class="nav-link active" id="v-pills-home-tab" data-bs-toggle="pill" href="#v-pills-home" role="tab"
|
|
aria-controls="v-pills-home" aria-selected="true">
|
|
Buket
|
|
</a>
|
|
<a class="nav-link" id="v-pills-profile-tab" data-bs-toggle="pill" href="#v-pills-profile"
|
|
role="tab" aria-controls="v-pills-profile" aria-selected="false">
|
|
Foto
|
|
</a>
|
|
</div>
|
|
|
|
<div class="tab-content" id="v-pills-tabContent">
|
|
|
|
<div class="tab-pane fade show active" id="v-pills-home" role="tabpanel"
|
|
aria-labelledby="v-pills-home-tab">
|
|
<table class="table table-striped" id="riwayat-buket">
|
|
<thead>
|
|
<tr>
|
|
<th>No.</th>
|
|
<th>Nama Pelanggan</th>
|
|
<th>Nama Buket</th>
|
|
<th>Tanggal Ambil</th>
|
|
<th>Total</th>
|
|
<th>Status</th>
|
|
<th>Aksi</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Graiden</td>
|
|
<td>vehicula.aliquet@semconsequat.co.uk</td>
|
|
<td>076 4820 8838</td>
|
|
<td>Offenburg</td>
|
|
<td>Offenburg</td>
|
|
<td>
|
|
<span class="badge bg-success-subtle rounded-pill px-3 py-2">Selesai</span>
|
|
</td>
|
|
<td class="col-auto">
|
|
<a href="#" class="btn icon btn-primary btn-action" data-bs-toggle="modal"
|
|
data-bs-target="#riwayatBuket">
|
|
<i class="bi bi-eye"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="tab-pane fade" id="v-pills-profile" role="tabpanel" aria-labelledby="v-pills-profile-tab">
|
|
<table class="table table-striped" id="riwayat-foto">
|
|
<thead>
|
|
<tr>
|
|
<th>No.</th>
|
|
<th>Nama Pelanggan</th>
|
|
<th>Nama Paket</th>
|
|
<th>Tanggal Booking</th>
|
|
<th>Total</th>
|
|
<th>Status</th>
|
|
<th>Aksi</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Graiden</td>
|
|
<td>vehicula.aliquet@semconsequat.co.uk</td>
|
|
<td>076 4820 8838</td>
|
|
<td>Offenburg</td>
|
|
<td>Offenburg</td>
|
|
<td>
|
|
<span class="badge bg-success-subtle rounded-pill px-3 py-2">Selesai</span>
|
|
</td>
|
|
<td class="col-auto">
|
|
<a href="#" class="btn icon btn-primary btn-action" data-bs-toggle="modal"
|
|
data-bs-target="#riwayatFoto">
|
|
<i class="bi bi-eye"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</section>
|
|
@include('admin.pesanan.partials.modal-riwayat')
|
|
|
|
@endsection
|