37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<div class="wrapper">
|
|
<x-dashboard.card class="bg-white">
|
|
<p class="font-bold mb-6">My Listings</p>
|
|
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
|
|
<x-dashboard.listing-card
|
|
:image="asset('storage/images/pexels-irrabagon-35425432.jpg')"
|
|
title="Luxury Apartment Downtown"
|
|
category="Real Estate"
|
|
status="Active"
|
|
impressions="1245"
|
|
likes="89"
|
|
class="156"
|
|
/>
|
|
|
|
<x-dashboard.listing-card
|
|
:image="asset('storage/images/vitaly-gariev-NODOn-Mrams-unsplash.jpg')"
|
|
title="Best Italian Resturant"
|
|
category="Real Estate"
|
|
status="Active"
|
|
impressions="1245"
|
|
likes="89"
|
|
class="156"
|
|
/>
|
|
|
|
<x-dashboard.listing-card
|
|
:image="asset('storage/images/vijay-kumar-pZcEo5TlxJc-unsplash.jpg')"
|
|
title="Luxury Apartment Downtown"
|
|
category="Real Estate"
|
|
status="Pending"
|
|
impressions="1245"
|
|
likes="89"
|
|
class="156"
|
|
/>
|
|
</div>
|
|
</x-dashboard.card>
|
|
</div>
|