annotate resources/views/components/card.blade.php @ 2:90296614b7e2
default tip
Adding in the base for the clients table
| author |
luka |
| date |
Thu, 28 Aug 2025 20:55:40 -0400 |
| parents |
9d7dcd54c677 |
| children |
|
| rev |
line source |
|
0
|
1 @props([
|
|
|
2 'title' => null, // e.g. 'Upcoming Milestones'
|
|
|
3 'icon' => null, // SVG (pass as a Blade include or html)
|
|
|
4 'empty' => 'Nothing to show.',
|
|
|
5 'footer' => null, // Optional (e.g. a "View All" link)
|
|
|
6 'headerButton' => null, //button or link for the right side of the header
|
|
|
7 ])
|
|
|
8
|
|
|
9 <div class="dashboard-card">
|
|
|
10 </div>
|