120 lines
5.7 KiB
PHP
120 lines
5.7 KiB
PHP
@extends('layouts.admin')
|
|
|
|
@section('title', 'Paket Foto')
|
|
|
|
@section('content')
|
|
<section class="section">
|
|
<div class="d-flex gap-2 pb-3">
|
|
|
|
<a href="#" class="btn-add-foto" data-bs-toggle="modal" data-bs-target="#createFoto">
|
|
<i class="bi bi-plus fs-5"></i>
|
|
Tambah Paket Foto
|
|
</a>
|
|
|
|
<a href="#" class="btn-add-additional" data-bs-toggle="modal" data-bs-target="#createAdd">
|
|
<i class="bi bi-plus fs-5"></i>
|
|
Tambah Additional
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<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">
|
|
Paket Foto
|
|
</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">
|
|
Additional
|
|
</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="table1">
|
|
<thead>
|
|
<tr>
|
|
<th>No.</th>
|
|
<th>Nama Paket</th>
|
|
<th>Deskripsi</th>
|
|
<th>Harga</th>
|
|
<th>Foto</th>
|
|
<th class="text-center">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 class="col-auto text-center">
|
|
<a href="#" class="btn icon btn-primary btn-action" data-bs-toggle="modal"
|
|
data-bs-target="#foto">
|
|
<i class="bi bi-eye"></i>
|
|
</a>
|
|
<a href="#" class="btn icon btn-warning btn-action" data-bs-toggle="modal"
|
|
data-bs-target="#editFoto">
|
|
<i class="bi bi-pencil"></i>
|
|
</a>
|
|
<a href="#" class="btn icon btn-danger btn-action" data-bs-toggle="modal"
|
|
data-bs-target="#deleteFoto">
|
|
<i class="bi bi-trash"></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 Additional</th>
|
|
<th>Harga</th>
|
|
<th class="text-center">Aksi</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Graiden</td>
|
|
<td>vehicula.aliquet@semconsequat.co.uk</td>
|
|
<td>076 4820 8838</td>
|
|
<td class="col-auto text-center">
|
|
<a href="#" class="btn icon btn-warning btn-action" data-bs-toggle="modal"
|
|
data-bs-target="#editAdd">
|
|
<i class="bi bi-pencil"></i>
|
|
</a>
|
|
<a href="#" class="btn icon btn-danger btn-action" data-bs-toggle="modal"
|
|
data-bs-target="#deleteAdd">
|
|
<i class="bi bi-trash"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</section>
|
|
@include('admin.paket-foto.partials.modal-create-foto')
|
|
@include('admin.paket-foto.partials.modal-show-foto')
|
|
@include('admin.paket-foto.partials.modal-edit-foto')
|
|
@include('admin.paket-foto.partials.modal-delete-foto')
|
|
@include('admin.paket-foto.partials.modal-create-additional')
|
|
@include('admin.paket-foto.partials.modal-edit-additional')
|
|
@include('admin.paket-foto.partials.modal-delete-additional')
|
|
|
|
@endsection
|