- Removed `UserDashboardController` and related user dashboard views. - Introduced `ExplorePageController` and redesigned `explore.blade.php` as the main user-facing page. - Updated routing logic to redirect users (non-admin and non-broker) to the `explore` page. - Added dedicated sidebar and layout components for the broker dashboard, improving structure and navigation.
8 lines
274 B
PHP
8 lines
274 B
PHP
<x-dashboard.broker.layout title="Broker Dashboard">
|
|
<x-slot:heading>
|
|
<x-dashboard.broker.navbar/>
|
|
</x-slot:heading>
|
|
<x-dashboard.broker.stats :list_count="$deals->count()"/>
|
|
<x-dashboard.broker.listing :deals="$deals"/>
|
|
</x-dashboard.broker.layout>
|