- 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.
7 lines
134 B
JavaScript
7 lines
134 B
JavaScript
function showMenu(e){
|
|
const menu = e.nextElementSibling;
|
|
menu.classList.toggle('invisible');
|
|
}
|
|
|
|
document.showMenu = showMenu;
|