- Created a dedicated UserDashboardController to handle user-related logic. - Added deal listing views and components for users, including action toolbars, broker contact, and stat badges. - Refactored UI components to support new features like toggle buttons and improved input handling. - Updated routes with a new prefix for user-related pathways, ensuring a better structure across dashboards.
18 lines
565 B
PHP
18 lines
565 B
PHP
@props(['impression' => 0, 'likes' => 0, 'clicks' => 0])
|
|
<div class="flex items-center justify-between">
|
|
<div class=" text-accent-600 flex space-x-2">
|
|
<x-heroicon-o-eye class="w-4"/>
|
|
<p class="text-sm">{{$impression}}</p>
|
|
</div>
|
|
|
|
<div class=" text-accent-600 flex space-x-2">
|
|
<x-heroicon-o-heart class="w-4"/>
|
|
<p class="text-sm">{{$likes}}</p>
|
|
</div>
|
|
|
|
<div class=" text-accent-600 flex space-x-2">
|
|
<x-heroicon-o-cursor-arrow-rays class="w-4"/>
|
|
<p class="text-sm">{{$clicks}}</p>
|
|
</div>
|
|
</div>
|