- replaced `alert-error` and `alert-success` components with a single reusable `alert` component - added JS functionality for dismissible alerts - updated related views to use the new `alert` component - adjusted broker profile logic to display initials and verification status dynamically - refactored morph relations from `type` to `role` - enhanced image preview behavior for file inputs - made broker migration fields nullable and added safeguards against registration errors - Added confirmation when a user wants delete deal - Add dynamic initials for user profile picture - make image file name non-overidding with timestamp
20 lines
584 B
PHP
20 lines
584 B
PHP
<x-layout title="Broker Dashboard">
|
|
<section class="flex flex-col space-y-8 bg-[#F9FAFB]">
|
|
<x-dashboard.navbar/>
|
|
|
|
<div class="wrapper">
|
|
@session('success')
|
|
<x-ui.alert variant="success">{{$value}}</x-ui.alert>
|
|
@endsession
|
|
|
|
@session('error')
|
|
<x-ui.alert variant="error">{{$value}}</x-ui.alert>
|
|
@endsession
|
|
</div>
|
|
|
|
<x-dashboard.stats :list_count="$deals->count()"/>
|
|
<x-dashboard.listing :deals="$deals"/>
|
|
</section>
|
|
@vite('resources/js/nav-menu.js')
|
|
</x-layout>
|