feat: install and scaffold Tablar theme #6

Merged
rlong merged 139 commits from feature/tablar-theme into master 2026-05-02 16:01:21 -04:00
Showing only changes of commit 92da95bdff - Show all commits
+8 -4
View File
@@ -21,16 +21,20 @@
<thead> <thead>
<tr> <tr>
<th>#</th> <th>#</th>
<th>Last Name</th> <th>Name</th>
<th>First Name</th> <th>Phone</th>
<th>Email</th>
<th>Address</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@foreach($bidderlist_results as $bidder) @foreach($bidderlist_results as $bidder)
<tr> <tr>
<td>{{ $bidder->bidder_assigned_number }}</td> <td>{{ $bidder->bidder_assigned_number }}</td>
<td>{{ $bidder->bidder_lname }}</td> <td>{{ $bidder->bidder_fname }} {{ $bidder->bidder_lname }}</td>
<td>{{ $bidder->bidder_fname }}</td> <td>{{ $bidder->bidder_phone }}</td>
<td>{{ $bidder->bidder_email }}</td>
<td>{{ $bidder->bidder_addr }}, {{ $bidder->bidder_city }}</td>
</tr> </tr>
@endforeach @endforeach
</tbody> </tbody>