mirror of
https://github.com/dyzulk/dyzulk-apps.git
synced 2026-01-26 13:22:02 +07:00
252 lines
16 KiB
PHP
252 lines
16 KiB
PHP
<main class="h-full pb-16 overflow-y-auto">
|
|
<div class="container grid px-6 mx-auto">
|
|
<h2 class="my-6 text-2xl font-semibold text-gray-700 dark:text-gray-200">
|
|
Tables
|
|
</h2>
|
|
<!-- CTA -->
|
|
<a class="flex items-center justify-between p-4 mb-8 text-sm font-semibold text-purple-100 bg-purple-600 rounded-lg shadow-md focus:outline-none focus:shadow-outline-purple"
|
|
href="<?=base_url('transaksi');?>">
|
|
<div class="flex items-center">
|
|
<svg class="w-5 h-5 mr-2" fill="currentColor" viewBox="0 0 20 20">
|
|
<path
|
|
d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z">
|
|
</path>
|
|
</svg>
|
|
<span>Star this project on GitHub</span>
|
|
</div>
|
|
<span>View more →</span>
|
|
</a>
|
|
|
|
<div class="mb-4">
|
|
<button @click="openModal"
|
|
class="flex items-center justify-between px-4 py-2 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-lg active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple">
|
|
<i class="fad fa-plus w-4 h-4 mr-2 -ml-1"></i>
|
|
<span>Create</span>
|
|
</button>
|
|
</div>
|
|
|
|
<!-- With actions -->
|
|
<h4 class="mb-4 text-lg font-semibold text-gray-600 dark:text-gray-300">
|
|
Table with actions
|
|
</h4>
|
|
<div class="w-full overflow-hidden rounded-lg shadow-xs">
|
|
<div class="w-full overflow-x-auto">
|
|
<table class="w-full whitespace-no-wrap">
|
|
<thead>
|
|
<tr
|
|
class="text-xs font-semibold tracking-wide text-left text-gray-500 uppercase border-b dark:border-gray-700 bg-gray-50 dark:text-gray-400 dark:bg-gray-800">
|
|
<th class="px-4 py-3">Whos</th>
|
|
<th class="px-4 py-3">Amount</th>
|
|
<th class="px-4 py-3">Date</th>
|
|
<th class="px-4 py-3">Other</th>
|
|
<th class="px-4 py-3">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="bg-white divide-y dark:divide-gray-700 dark:bg-gray-800">
|
|
<?php foreach ($transData as $transaction) : ?>
|
|
<tr class="text-gray-700 dark:text-gray-400">
|
|
<td class="px-4 py-3">
|
|
<div class="flex items-center text-sm">
|
|
<!-- Avatar with inset shadow -->
|
|
<div class="relative hidden w-8 h-8 mr-3 rounded-full md:block">
|
|
<img class="object-cover w-full h-full rounded-full"
|
|
src="<?=base_url('src/user/image/' . $transaction['image']);?>" alt=""
|
|
loading="lazy" />
|
|
<div class="absolute inset-0 rounded-full shadow-inner" aria-hidden="true">
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<p class="font-semibold">
|
|
<?=$transaction['nama'];?>
|
|
</p>
|
|
<p class="text-xs text-gray-600 dark:text-gray-400">
|
|
<?=$transaction['email'];?>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
<td class="px-4 py-3 text-sm">
|
|
<?=$transaction['amount'];?>
|
|
</td>
|
|
<td class="px-4 py-3 text-sm">
|
|
<?= date('d F Y', $transaction['time_transaction']); ?>
|
|
</td>
|
|
<td class="px-4 py-3 text-sm">
|
|
<?= date('d F Y', $transaction['other']);?>
|
|
</td>
|
|
<td class="px-4 py-3">
|
|
<div class="flex items-center space-x-4 text-sm">
|
|
<?php echo anchor(base_url('transaksi/editData?id=').$transaction['id'], '<button class="flex items-center justify-between px-2 py-2 text-sm font-medium leading-5 text-purple-600 rounded-lg dark:text-gray-400 focus:outline-none focus:shadow-outline-gray" aria-label="Edit"><svg class="w-5 h-5" aria-hidden="true" fill="currentColor" viewBox="0 0 20 20"><path d="M13.586 3.586a2 2 0 112.828 2.828l-.793.793-2.828-2.828.793-.793zM11.379 5.793L3 14.172V17h2.828l8.38-8.379-2.83-2.828z"></path></svg></button>');?>
|
|
<button
|
|
onclick="hapusData('<?php echo $transaction['id']; ?>')"
|
|
class="flex items-center justify-between px-2 py-2 text-sm font-medium leading-5 text-purple-600 rounded-lg dark:text-gray-400 focus:outline-none focus:shadow-outline-gray"
|
|
aria-label="Delete">
|
|
<svg class="w-5 h-5" aria-hidden="true" fill="currentColor" viewBox="0 0 20 20">
|
|
<path fill-rule="evenodd"
|
|
d="M9 2a1 1 0 00-.894.553L7.382 4H4a1 1 0 000 2v10a2 2 0 002 2h8a2 2 0 002-2V6a1 1 0 100-2h-3.382l-.724-1.447A1 1 0 0011 2H9zM7 8a1 1 0 012 0v6a1 1 0 11-2 0V8zm5-1a1 1 0 00-1 1v6a1 1 0 102 0V8a1 1 0 00-1-1z"
|
|
clip-rule="evenodd"></path>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div
|
|
class="grid px-4 py-3 text-xs font-semibold tracking-wide text-gray-500 uppercase border-t dark:border-gray-700 bg-gray-50 sm:grid-cols-9 dark:text-gray-400 dark:bg-gray-800">
|
|
<span class="flex items-center col-span-3">
|
|
Showing 21-30 of 100
|
|
</span>
|
|
<span class="col-span-2"></span>
|
|
<!-- Pagination -->
|
|
<span class="flex col-span-4 mt-2 sm:mt-auto sm:justify-end">
|
|
<nav aria-label="Table navigation">
|
|
<ul class="inline-flex items-center">
|
|
<li>
|
|
<button
|
|
class="px-3 py-1 rounded-md rounded-l-lg focus:outline-none focus:shadow-outline-purple"
|
|
aria-label="Previous">
|
|
<svg class="w-4 h-4 fill-current" aria-hidden="true" viewBox="0 0 20 20">
|
|
<path
|
|
d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z"
|
|
clip-rule="evenodd" fill-rule="evenodd"></path>
|
|
</svg>
|
|
</button>
|
|
</li>
|
|
<li>
|
|
<button class="px-3 py-1 rounded-md focus:outline-none focus:shadow-outline-purple">
|
|
1
|
|
</button>
|
|
</li>
|
|
<li>
|
|
<button class="px-3 py-1 rounded-md focus:outline-none focus:shadow-outline-purple">
|
|
2
|
|
</button>
|
|
</li>
|
|
<li>
|
|
<button
|
|
class="px-3 py-1 text-white transition-colors duration-150 bg-purple-600 border border-r-0 border-purple-600 rounded-md focus:outline-none focus:shadow-outline-purple">
|
|
3
|
|
</button>
|
|
</li>
|
|
<li>
|
|
<button class="px-3 py-1 rounded-md focus:outline-none focus:shadow-outline-purple">
|
|
4
|
|
</button>
|
|
</li>
|
|
<li>
|
|
<span class="px-3 py-1">...</span>
|
|
</li>
|
|
<li>
|
|
<button class="px-3 py-1 rounded-md focus:outline-none focus:shadow-outline-purple">
|
|
8
|
|
</button>
|
|
</li>
|
|
<li>
|
|
<button class="px-3 py-1 rounded-md focus:outline-none focus:shadow-outline-purple">
|
|
9
|
|
</button>
|
|
</li>
|
|
<li>
|
|
<button
|
|
class="px-3 py-1 rounded-md rounded-r-lg focus:outline-none focus:shadow-outline-purple"
|
|
aria-label="Next">
|
|
<svg class="w-4 h-4 fill-current" aria-hidden="true" viewBox="0 0 20 20">
|
|
<path
|
|
d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
|
|
clip-rule="evenodd" fill-rule="evenodd"></path>
|
|
</svg>
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</span>
|
|
</div>
|
|
<!-- Modal backdrop. This what you want to place close to the closing body tag -->
|
|
<div x-show="isModalOpen" x-transition:enter="transition ease-out duration-150"
|
|
x-transition:enter-start="opacity-0" x-transition:enter-end="opacity-100"
|
|
x-transition:leave="transition ease-in duration-150" x-transition:leave-start="opacity-100"
|
|
x-transition:leave-end="opacity-0"
|
|
class="fixed inset-0 z-30 flex items-end bg-black bg-opacity-50 sm:items-center sm:justify-center">
|
|
<!-- Modal -->
|
|
<div x-show="isModalOpen" x-transition:enter="transition ease-out duration-150"
|
|
x-transition:enter-start="opacity-0 transform translate-y-1/2" x-transition:enter-end="opacity-100"
|
|
x-transition:leave="transition ease-in duration-150" x-transition:leave-start="opacity-100"
|
|
x-transition:leave-end="opacity-0 transform translate-y-1/2" @click.away="closeModal"
|
|
@keydown.escape="closeModal"
|
|
class="w-full px-6 py-4 overflow-hidden bg-white rounded-t-lg dark:bg-gray-800 sm:rounded-lg sm:m-4 sm:max-w-xl"
|
|
role="dialog" id="modal">
|
|
<!-- Remove header if you don't want a close icon. Use modal body to place modal tile. -->
|
|
<form action="<?=base_url('transaksi/addData');?>" method="post">
|
|
<header class="flex justify-end">
|
|
<button
|
|
class="inline-flex items-center justify-center w-6 h-6 text-gray-400 transition-colors duration-150 rounded dark:hover:text-gray-200 hover: hover:text-gray-700"
|
|
aria-label="close" @click="closeModal">
|
|
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 20 20" role="img" aria-hidden="true">
|
|
<path
|
|
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
|
|
clip-rule="evenodd" fill-rule="evenodd"></path>
|
|
</svg>
|
|
</button>
|
|
</header>
|
|
<!-- Modal body -->
|
|
<div class="mt-4 mb-6">
|
|
<!-- Modal title -->
|
|
<p class="mb-2 text-lg font-semibold text-gray-700 dark:text-gray-300">
|
|
Add
|
|
</p>
|
|
<!-- Modal description -->
|
|
<div class="px-4 py-3 mb-8 bg-white rounded-lg shadow-md dark:bg-gray-800">
|
|
<label class="block mt-4 text-sm">
|
|
<span class="text-gray-700 dark:text-gray-400">
|
|
Whos
|
|
</span>
|
|
<select
|
|
class="block w-full mt-1 text-sm dark:text-gray-300 dark:border-gray-600 dark:bg-gray-700 form-select focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:focus:shadow-outline-gray"
|
|
name="id">
|
|
<?php foreach ($users as $usr) : ?>
|
|
<option value="<?= $usr['id']; ?>">
|
|
<?= $usr['id']; ?> - <?= $usr['nama']; ?>
|
|
</option>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
</label>
|
|
<label class="block mt-4 text-sm">
|
|
<span class="text-gray-700 dark:text-gray-400">Amount</span>
|
|
<input
|
|
class="block w-full mt-1 text-sm dark:border-gray-600 dark:bg-gray-700 focus:border-purple-400 focus:outline-none focus:shadow-outline-purple dark:text-gray-300 dark:focus:shadow-outline-gray form-input"
|
|
placeholder="Rp. " type="text" name="amount" id="amountInput"
|
|
required="required" />
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<footer
|
|
class="flex flex-col items-center justify-end px-6 py-3 -mx-6 -mb-4 space-y-4 sm:space-y-0 sm:space-x-6 sm:flex-row bg-gray-50 dark:bg-gray-800">
|
|
<button @click="closeModal"
|
|
class="w-full px-5 py-3 text-sm font-medium leading-5 text-white text-gray-700 transition-colors duration-150 border border-gray-300 rounded-lg dark:text-gray-400 sm:px-4 sm:py-2 sm:w-auto active:bg-transparent hover:border-gray-500 focus:border-gray-500 active:text-gray-500 focus:outline-none focus:shadow-outline-gray">
|
|
Cancel
|
|
</button>
|
|
<button
|
|
type="submit"
|
|
class="w-full px-5 py-3 text-sm font-medium leading-5 text-white transition-colors duration-150 bg-purple-600 border border-transparent rounded-lg sm:w-auto sm:px-4 sm:py-2 active:bg-purple-600 hover:bg-purple-700 focus:outline-none focus:shadow-outline-purple">
|
|
Accept
|
|
</button>
|
|
</footer>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
<script src="<?=base_url('src/js/rupiah.js');?>"></script>
|
|
<script src="<?=base_url('src/js/deleteWalert.js');?>"></script>
|
|
<script>
|
|
var baseUrl = "<?=base_url();?>";
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|