21 lines
2.1 KiB
PHP
21 lines
2.1 KiB
PHP
@props(['stats' => []])
|
|
<div class="grid grid-cols-1 md:grid-cols-3 wrapper gap-y-4 gap-x-8">
|
|
<x-dashboard.stats-card title="Total Listings" :score="$stats['listings'] ?? 0">
|
|
<x-icon-square variant="blue">
|
|
<x-heroicon-o-document-text class=" w-6 lg:w-8" />
|
|
</x-icon-square>
|
|
</x-dashboard.stats-card>
|
|
|
|
<x-dashboard.stats-card title="Total Customers" :score="$stats['customers'] ?? 0">
|
|
<x-icon-square variant="purple">
|
|
<x-heroicon-o-users class=" w-6 lg:w-8" />
|
|
</x-icon-square>
|
|
</x-dashboard.stats-card>
|
|
<x-dashboard.stats-card title="Total Brokers" :score="$stats['brokers'] ?? 0">
|
|
<x-icon-square variant="pink">
|
|
<svg class="w-5 lg:w-8 fill-pink-700 stroke-pink-700" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" ><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M512.536516 506.562145l-112.606908 197.063113 112.606908 225.21484 112.607932-225.21484z" ></path><path d="M680.856096 476.172205c36.824036-40.482378 59.488761-94.060249 59.488761-152.967444 0-125.613323-102.193994-227.807318-227.807317-227.807318s-227.807318 102.193994-227.807318 227.807318c0 58.906171 22.664726 112.485066 59.488761 152.967444-58.595933 32.817572-187.285008 138.139536-187.285008 430.442414 0 12.273313 9.951141 22.225479 22.225479 22.225479 12.273313 0 22.225479-9.951141 22.225479-22.225479 0-304.35708 145.515606-384.465868 178.379253-398.671253 37.433247 26.981426 83.210136 43.069736 132.773354 43.069737 49.564241 0 95.342154-16.08831 132.775401-43.070761 32.907674 14.226887 178.376182 94.379701 178.376182 398.673301 0 12.273313 9.951141 22.225479 22.225479 22.225479s22.225479-9.951141 22.225478-22.225479c-0.001024-292.303902-128.690099-397.625866-187.283984-430.443438zM329.179132 323.204761c0-101.098437 82.258947-183.357384 183.357384-183.357384s183.357384 82.258947 183.357384 183.357384-82.258947 183.357384-183.357384 183.357384-183.357384-82.258947-183.357384-183.357384z"></path></g></svg>
|
|
|
|
</x-icon-square>
|
|
</x-dashboard.stats-card>
|
|
</div>
|