@php $menu = [ [ 'section' => 'dashboard', 'label' => 'Dashboard', 'icon' => '', 'route' => 'admin.dashboard', ], [ 'section' => 'properties', 'label' => 'Property Management', 'icon' => '', 'children' => [ ['label' => 'All Properties', 'route' => 'admin.properties.index'], ['label' => 'Add Property', 'route' => 'admin.properties.create'], ['label' => 'Property Types', 'route' => 'admin.properties.types'], ['label' => 'Property Categories', 'route' => 'admin.properties.categories'], ['label' => 'Property Status', 'route' => 'admin.properties.status'], ['label' => 'Amenities Master', 'route' => 'admin.properties.amenities'], ['label' => 'Property Features', 'route' => 'admin.properties.features'], ['label' => 'Property Images', 'route' => 'admin.properties.images'], // ['label' => 'Floor Plans', 'route' => 'admin.properties.floor-plans'], // ['label' => 'Documents', 'route' => 'admin.properties.documents'], // ['label' => 'Nearby Locations', 'route' => 'admin.properties.nearby'], // ['label' => 'Approval Queue', 'route' => 'admin.properties.approval'], ], ], [ 'section' => 'projects', 'label' => 'Projects', 'icon' => '', 'children' => [ ['label' => 'All Projects', 'route' => 'admin.projects.index'], ['label' => 'Add Project', 'route' => 'admin.projects.create'], ['label' => 'Project Units', 'route' => 'admin.projects.units'], ['label' => 'Project Gallery', 'route' => 'admin.projects.gallery'], ['label' => 'Project Location Map', 'route' => 'admin.projects.location'], ['label' => 'RERA Details', 'route' => 'admin.projects.rera'], ], ], [ 'section' => 'agents', 'label' => 'Agents', 'icon' => '', 'children' => [ ['label' => 'All Agents', 'route' => 'admin.agents.index'], ['label' => 'Add Agent', 'route' => 'admin.agents.create'], ['label' => 'Agent Reviews', 'route' => 'admin.agents.reviews'], ['label' => 'Agent Properties', 'route' => 'admin.agents.properties'], ], ], [ 'section' => 'agencies', 'label' => 'Agencies', 'icon' => '', 'children' => [ ['label' => 'All Agencies', 'route' => 'admin.agencies.index'], ['label' => 'Agency Agents', 'route' => 'admin.agencies.agents'], ['label' => 'Agency Listings', 'route' => 'admin.agencies.listings'], ], ], // [ // 'section' => 'users', // 'label' => 'Users', // 'icon' => // '', // 'children' => [ // ['label' => 'All Users', 'route' => 'admin.users.index'], // ['label' => 'Saved Properties', 'route' => 'admin.users.saved-properties'], // ['label' => 'Saved Searches', 'route' => 'admin.users.saved-searches'], // ['label' => 'Compare History', 'route' => 'admin.users.compare-history'], // ], // ], [ 'section' => 'enquiries', 'label' => 'Enquiries & Leads', 'icon' => '', 'children' => [ ['label' => 'Property Enquiries', 'route' => 'admin.enquiries.property'], ['label' => 'Contact Form Leads', 'route' => 'admin.enquiries.contact'], // ['label' => 'Schedule Visit', 'route' => 'admin.enquiries.schedule'], // ['label' => 'Call Requests', 'route' => 'admin.enquiries.calls'], // ['label' => 'WhatsApp Leads', 'route' => 'admin.enquiries.whatsapp'], ], ], // [ // 'section' => 'reviews', // 'label' => 'Reviews & Ratings', // 'icon' => // '', // 'children' => [ // ['label' => 'Property Reviews', 'route' => 'admin.reviews.property'], // ['label' => 'Agent Reviews', 'route' => 'admin.reviews.agent'], // ], // ], // [ // 'section' => 'marketing', // 'label' => 'Marketing Tools', // 'icon' => // '', // 'children' => [ // ['label' => 'Featured Listings', 'route' => 'admin.marketing.featured'], // ['label' => 'Homepage Sections', 'route' => 'admin.marketing.homepage'], // ['label' => 'Banner Slider', 'route' => 'admin.marketing.banners'], // ['label' => 'Promotions / Packages', 'route' => 'admin.marketing.promotions'], // ], // ], [ 'section' => 'pages', 'label' => 'Pages CMS', 'icon' => '', 'children' => [ ['label' => 'Homepage Content', 'route' => 'admin.pages.homepage'], ['label' => 'About Us', 'route' => 'admin.pages.aboutus'], // ['label' => 'About Us', 'route' => 'admin.pages.about'], // ['label' => 'Careers', 'route' => 'admin.pages.careers'], // ['label' => 'FAQ', 'route' => 'admin.pages.faq'], ['label' => 'Contact Page', 'route' => 'admin.pages.contact'], // ['label' => 'Testimonials', 'route' => 'admin.testimonials.index'], ], ], // [ // 'section' => 'blog', // 'label' => 'Blog CMS', // 'icon' => // '', // 'children' => [ // ['label' => 'Categories', 'route' => 'admin.blog.categories'], // ['label' => 'Posts', 'route' => 'admin.blog.posts'], // ['label' => 'Tags', 'route' => 'admin.blog.tags'], // ['label' => 'Comments', 'route' => 'admin.blog.comments'], // ], // ], // [ // 'section' => 'finance', // 'label' => 'Finance Tools', // 'icon' => // '', // 'children' => [ // ['label' => 'Mortgage Calculator', 'route' => 'admin.finance.mortgage'], // ['label' => 'Loan Partners', 'route' => 'admin.finance.loan-partners'], // ], // ], // [ // 'section' => 'settings', // 'label' => 'Settings', // 'icon' => // '', // 'children' => [ // ['label' => 'General Settings', 'route' => 'admin.settings.general'], // ['label' => 'SEO Settings', 'route' => 'admin.settings.seo'], // ['label' => 'Email Templates', 'route' => 'admin.settings.email-templates'], // ['label' => 'SMS / WhatsApp API', 'route' => 'admin.settings.sms-whatsapp'], // ['label' => 'Payment Gateway', 'route' => 'admin.settings.payment'], // ['label' => 'Roles & Permissions', 'route' => 'admin.settings.roles'], // ], // ], ]; @endphp