@extends('layouts.app') @section('title', 'Tables UI Kit') @section('content')
Komponen tabel dengan seleksi checkbox kustom yang modern.
| Customer | Status | Action |
|---|---|---|
|
{{ substr($row['name'], 0, 2) }}
{{ $row['name'] }} {{ $row['email'] }} |
{{ $row['status'] }} |
<!-- Basic Table -->
<table class="w-full text-left">
<thead class="bg-gray-50 dark:bg-gray-800/50">...</thead>
<tbody class="divide-y divide-gray-100">...</tbody>
</table>
| Inventory | Stock | |
|---|---|---|
| {{ $item }} | 124 Units |
<!-- Beautiful Custom Checkbox UI -->
<label class="relative flex items-center cursor-pointer">
<input type="checkbox" class="peer sr-only">
<div class="w-5 h-5 border-2 rounded-lg peer-checked:bg-indigo-600 peer-checked:border-indigo-600 transition-all"></div>
<i class="ti ti-check absolute text-white text-xs scale-0 peer-checked:scale-100"></i>
</label>
| Order ID | Amount | Date | Status |
|---|---|---|---|
| #TRX-99{{ $order }} | Rp 12.500.000 | 12 Jan 2024 | Processing |
Showing 1-10 of 240