kusowl 94ef8f360d feature (favorite and reported deals):
- add favorites and reported tabs in user profile pages
- add remove favorites
- customers can view a deal directly from profiles section and deal modal is shown in explore page
- fix formatting by pint
2026-01-23 16:14:04 +05:30

9 lines
317 B
PHP

@props(['deals' => [], 'isInteractive'])
<div class="grid md:grid-cols-2 gap-6">
@forelse($deals as $deal)
<x-dashboard.user.listing-card :deal="$deal" :broker="$deal->broker"/>
@empty
<p class="col-span-2 text-sm text-center text-accent-600 mt-12">No Deals found !</p>
@endforelse
</div>