TIF_NGANJUK_E41220418/resources/views/admin/pesanan/buket.blade.php

46 lines
1.7 KiB
PHP

@extends('layouts.admin')
@section('title', 'Pesanan Buket')
@section('content')
<section class="section">
<div class="card">
<div class="card-body">
<table class="table table-striped" id="table1">
<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">Active</span>
</td>
<td class="col-auto">
<a href="#" class="btn icon btn-primary btn-action" data-bs-toggle="modal"
data-bs-target="#buket">
<i class="bi bi-eye"></i>
</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
@include('admin.pesanan.partials.modal-buket')
@endsection