dealhub/resources/views/components/dashboard/user/broker-contact.blade.php
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

11 lines
468 B
PHP

@props(['broker' => ''])
<div class="p-4 text-sm bg-gray-100 border-gray-200 border rounded-xl">
<p class="font-bold mb-2">Broker Contact</p>
<div class="text-accent-600 space-y-1">
<p data-is-loading="false" class="broker-name">{{$broker->name ?? ''}}</p>
<p data-is-loading="false" class="broker-email">{{$broker->email ?? ''}}</p>
<p data-is-loading="false" class="broker-phone">{{$broker->role->phone ?? ''}}</p>
</div>
</div>