@php $logo = get_setting('system_logo_black'); @endphp {{ get_setting('site_name') }}
    {{-- Dashboard --}} @can('admin_dashboard')
  • {{ translate('Dashboard') }}
  • @endcan @if (env('ENABLE_POS_SYSTEM') == true) @can('view_pos_system')
  • {{ translate('POS System') }}
  • @endcan @endif @if (env('ENABLE_LENSES') == true) @canany(['view_lenses', 'add_lenses', 'edit_lenses', 'delete_lenses', 'view_lenses_features', 'add_lenses_features', 'edit_lenses_features', 'delete_lenses_features'])
  • {{ translate('Lenses') }}
      @can('view_lenses')
    • {{ translate('All Lenses') }}
    • @endcan @can('view_lenses_features')
    • {{ translate('Lens Features') }}
    • @endcan
  • @endcanany @endif @canany(['add_new_product', 'show_all_products', 'show_in_house_products', 'show_seller_products', 'show_digital_products', 'product_bulk_import', 'product_bulk_export', 'view_product_categories', 'view_all_brands', 'brand_bulk_upload', 'view_product_attributes', 'view_colors', 'view_product_warranties', 'view_product_reviews'])
  • {{ translate('Products') }}
      @can('add_new_product')
    • {{ translate('Add New product') }}
    • @endcan @can('show_all_products')
    • {{ translate('All Products') }}
    • @endcan @if (env('ENABLE_INHOUSE_PRODUCT') == true) @can('show_in_house_products')
    • {{ translate('In House Products') }}
    • @endcan @endif @if (env('ENABLE_DIGITAL_PRODUCT') == true) @can('show_digital_products')
    • {{ translate('Digital Products') }}
    • @endcan @endif @if (get_setting('vendor_system_activation') == 1) @can('show_seller_products')
    • {{ translate('Seller Product') }}
      • {{ translate('Physical Products') }}
      • {{ translate('Digital Products') }}
    • @endcan @endif @if (env('ENABLE_BULK_IMPORT') == true) @can('product_bulk_import')
    • {{ translate('Bulk Import') }}
    • @endcan @endif @if (env('ENABLE_BULK_EXPORT') == true) @can('product_bulk_export')
    • {{ translate('Bulk Export') }}
    • @endcan @endif @can('view_product_categories')
    • {{ translate('Category') }}
    • @endcan @if (env('ENABLE_CATEGORY_WISE_DISCOUNT') == true) @can('set_category_wise_discount')
    • {{ translate('Category Based Discount') }}
    • @endcan @endif @canany(['view_all_brands', 'brand_bulk_upload'])
    • {{ translate('Brand') }}
        @can('view_all_brands')
      • {{ translate('All Brands') }}
      • @endcan @if(env('ENABLE_BRAND_BULK_UPLOAD') == true) @can('brand_bulk_upload')
      • {{ translate('Brand Bulk Import') }}
      • @endcan @endif
    • @endcan @if (env('ENABLE_ATTRIBUTE_CRUD') == true) @can('view_product_attributes')
    • {{ translate('Attribute') }}
    • @endcan @endif @can('view_colors')
    • {{ translate('Colors') }}
    • @endcan @if (env('ENABLE_SIZE_GUIDE') == true) @canany(['view_size_charts', 'view_measurement_points'])
    • {{ translate('Size Guide') }}
        @can('view_size_charts')
      • {{ translate('Size Chart') }}
      • @endcan @can('view_measurement_points')
      • {{ translate('Measurement Points') }}
      • @endcan
    • @endcan @endif @if (env('ENABLE_WARRANTY') == true) @can('view_product_warranties')
    • {{ translate('Warranty') }}
    • @endcan @endif @if (env('ENABLE_PRODUCT_REVIEW') == true) @can('view_product_reviews')
    • {{ translate('Product Reviews') }}
    • @endcan @endif
  • @endcanany {{-- Preorder --}} @if (addon_is_activated('preorder')) @canany(['preorder_dashboard', 'add_preorder_product', 'view_all_preorder_products', 'view_all_preorders', 'view_all_inhouse_preorders', 'view_all_seller_preorders', 'view_all_delayed_prepayment_preorders', 'view_all_final_preorders', 'view_preorder_seller_commission_history', 'preorder_settings', 'view_all_preorder_product_conversations', 'view_all_preorder_product_queries', 'view_all_preorder_product_reviews', 'view_all_faqs', 'view_all_preorder_notification_types'])
  • {{ translate('Preorder') }}
      @can('preorder_dashboard')
    • {{ translate('Dashboard') }}
    • @endcan @can('add_preorder_product')
    • {{ translate('Add New Preorder products') }}
    • @endcan @can('view_all_preorder_products')
    • {{ translate('Preorder Products') }}
    • @endcan @canany(['view_all_preorders', 'view_all_inhouse_preorders', 'view_all_seller_preorders', 'view_all_delayed_prepayment_preorders', 'view_all_final_preorders'])
    • {{ translate('Orders (Preorder)') }}
        @php $adminId = get_admin()->id; // Clone the original query to preserve it $all_preorders = \App\Models\Preorder::where('is_viewed', 0); // Get the total count of all preorders (before any modification) $all_preorders_count = $all_preorders->count(); // Clone the query for product_owner_id modifications $all_preorders_for_inhouse = clone $all_preorders; $inhouse_preorders_count = $all_preorders_for_inhouse ->where('product_owner_id', $adminId) ->count(); $all_preorders_for_sellers = clone $all_preorders; $sellers_preorders_count = $all_preorders_for_sellers ->where('product_owner_id', '!=', $adminId) ->count(); $all_delayed_prepayment_preorders = clone $all_preorders; $delayed_prepayment_preorders_count = $all_preorders ->where('prepayment_confirm_status', 0) ->where('request_preorder_status', 2) ->whereHas('preorder_product', function ($query) { $query->where('is_available', 1)->where('is_prepayment', 1); }) ->where( 'request_preorder_time', '<', \Carbon\Carbon::now()->subDay(), ) ->count(); $all_delayed_final_orders = clone $all_preorders; $delayed_final_orders_count = $all_preorders ->whereHas('preorder_product', function ($query) { $query->where('is_available', 1); }) ->where(function ($query) { $query ->whereHas('preorder_product', function ($subQuery) { // Check if prepayment is enabled, check from Prepayment confirm status & Time $subQuery->where('is_prepayment', 1); }) ->where('prepayment_confirm_status', 2) ->where('final_order_status', 0) ->where( 'prepayment_confirmation_time', '<', \Carbon\Carbon::now()->subDay(), ) ->orWhere(function ($subQuery) { // When prepayment is disabled, check from Final Order confirm status & Time $subQuery ->whereHas('preorder_product', function ( $innerQuery, ) { $innerQuery->where('is_prepayment', 0); }) ->where('request_preorder_status', 2) ->where('final_order_status', 0) ->where( 'request_preorder_time', '<', \Carbon\Carbon::now()->subDay(), ); }); }) ->count(); @endphp @can('view_all_preorders')
      • {{ translate('All Orders') }} {{ $all_preorders_count ?: '' }}
      • @endcan @if(env('ENABLE_INHOUSE_PRODUCT') == true) @can('view_all_inhouse_preorders')
      • {{ translate('Inhouse Orders') }} {{ $inhouse_preorders_count ?: '' }}
      • @endcan @endif @can('view_all_seller_preorders')
      • {{ translate('Seller Orders') }} {{ $sellers_preorders_count ?: '' }}
      • @endcan @can('view_all_delayed_prepayment_preorders')
      • {{ translate('Delayed Prepayment') }} {{ $delayed_prepayment_preorders_count ?: '' }}
      • @endcan @can('view_all_final_preorders')
      • {{ translate('Delayed Final Orders') }} {{ $delayed_final_orders_count ?: '' }}
      • @endcan
    • @endcan @can('view_preorder_seller_commission_history')
    • {{ translate('Preorder Commission History') }}
    • @endcan @can('preorder_settings')
    • {{ translate('Preorder Settings') }}
    • @endcan @can('view_all_preorder_product_conversations') @if (get_setting('conversation_system') == 1) @php $preorderConversation = get_non_viewed_preorder_conversations(); @endphp
    • {{ translate('Preorder Product Conversation') }} @if ($preorderConversation > 0) ({{ $preorderConversation }}) @endif
    • @endif @endcan @can('view_all_preorder_product_queries') @if (get_setting('product_query_activation') == 1)
    • {{ translate('Preorder Product Queries') }}
    • @endif @endcan @can('view_all_preorder_product_reviews')
    • {{ translate('Preorder Product Reviews') }}
    • @endcan @can('view_all_faqs')
    • {{ translate('FAQs') }}
    • @endcan @can('view_all_preorder_notification_types')
    • {{ translate('Preorder Notification Types') }}
    • @endcan
  • @endcan @endif @if (env('ENABLE_NOTE') == true) @canany(['view_notes', 'add_note'])
  • {{ translate('Notes') }}
      @can('add_note')
    • {{ translate('Add New Note') }}
    • @endcan @can('view_notes')
    • {{ translate('Note List') }}
    • @endcan
  • @endcanany @endif {{-- @if (addon_is_activated('auction')) @canany(['add_auction_product', 'view_all_auction_products', 'view_inhouse_auction_products', 'view_seller_auction_products', 'view_auction_product_orders'])
  • {{translate('Auction Products')}} @if (env('DEMO_MODE') == 'On') @endif
      @can('add_auction_product')
    • {{translate('Add New auction product')}}
    • @endcan @can('view_all_auction_products')
    • {{ translate('All Auction Products') }}
    • @endcan @can('view_inhouse_auction_products')
    • {{ translate('Inhouse Auction Products') }}
    • @endcan @if (get_setting('vendor_system_activation') == 1) @can('view_seller_auction_products')
    • {{ translate('Seller Auction Products') }}
    • @endcan @endif @can('view_auction_product_orders')
    • {{ translate('Auction Products Orders') }}
    • @endcan
  • @endcanany @endif --}} {{-- @if (addon_is_activated('wholesale')) @canany(['add_wholesale_product', 'view_all_wholesale_products', 'view_inhouse_wholesale_products', 'view_sellers_wholesale_products'])
  • {{translate('Wholesale Products')}} @if (env('DEMO_MODE') == 'On') @endif
      @can('add_wholesale_product')
    • {{translate('Add New Wholesale Product')}}
    • @endcan @can('view_all_wholesale_products')
    • {{ translate('All Wholesale Products') }}
    • @endcan @can('view_inhouse_wholesale_products')
    • {{ translate('In House Wholesale Products') }}
    • @endcan @if (get_setting('vendor_system_activation') == 1) @can('view_sellers_wholesale_products')
    • {{ translate('Seller Wholesale Products') }}
    • @endcan @endif
  • @endcanany @endif --}} @if (env('ENABLE_SALE_LISTING') == true) @canany(['view_all_orders', 'view_inhouse_orders', 'view_seller_orders', 'view_pickup_point_orders'])
  • {{ translate('Sales') }}
      @can('view_all_orders')
    • {{ translate('All Orders') }}
    • @endcan @if(env('ENABLE_INHOUSE_PRODUCT') == true) @can('view_inhouse_orders')
    • {{ translate('Inhouse orders') }}
    • @endcan @endif @if (get_setting('vendor_system_activation') == 1) @can('view_seller_orders')
    • {{ translate('Seller Orders') }}
    • @endcan @endif @if (env('ENABLE_PICKUP_POINTS') == true) @can('view_pickup_point_orders')
    • {{ translate('Pick-up Point Orders') }}
    • @endcan @endif @can('view_all_unpaid_orders')
    • {{ translate('Unpaid Orders') }}
    • @endcan
  • @endcanany @endif {{-- @if (addon_is_activated('delivery_boy')) @canany(['view_all_delivery_boy', 'add_delivery_boy', 'delivery_boy_payment_history', 'collected_histories_from_delivery_boy', 'order_cancle_request_by_delivery_boy', 'delivery_boy_configuration'])
  • {{translate('Delivery Boy')}} @if (env('DEMO_MODE') == 'On') @endif
      @can('view_all_delivery_boy')
    • {{translate('All Delivery Boy')}}
    • @endcan @can('add_delivery_boy')
    • {{translate('Add Delivery Boy')}}
    • @endcan @can('delivery_boy_payment_history')
    • {{translate('Payment Histories')}}
    • @endcan @can('collected_histories_from_delivery_boy')
    • {{translate('Collected Histories')}}
    • @endcan @can('order_cancle_request_by_delivery_boy')
    • {{translate('Cancel Request')}}
    • @endcan @can('delivery_boy_configuration')
    • {{translate('Configuration')}}
    • @endcan
  • @endcanany @endif --}} {{-- @if (addon_is_activated('refund_request')) @canany(['view_refund_requests', 'view_approved_refund_requests', 'view_rejected_refund_requests', 'refund_request_configuration'])
  • {{ translate('Refunds') }} @if (env('DEMO_MODE') == 'On') @endif
      @can('view_refund_requests')
    • {{translate('Refund Requests')}}
    • @endcan @can('view_approved_refund_requests')
    • {{translate('Approved Refunds')}}
    • @endcan @can('view_rejected_refund_requests')
    • {{translate('Rejected Refunds')}}
    • @endcan @can('refund_request_configuration')
    • {{translate('Refund Configuration')}}
    • @endcan
  • @endcanany @endif --}} @if (env('ENABLE_CUSTOMER_LISTING') == true) @canany(['view_all_customers', 'view_classified_products', 'view_classified_packages'])
  • {{ translate('Customers') }}
      @can('view_all_customers')
    • {{ translate('Customer list') }}
    • @endcan @if (get_setting('classified_product') == 1) @can('view_classified_products')
    • {{ translate('Classified Products') }}
    • @endcan @can('view_classified_packages')
    • {{ translate('Classified Packages') }}
    • @endcan @endif
  • @endcanany @endif @if (get_setting('vendor_system_activation') == 1) @canany(['view_all_seller', 'seller_payment_history', 'view_seller_payout_requests', 'seller_commission_configuration', 'view_all_seller_packages', 'seller_verification_form_configuration', 'set_category_wise_commission', 'set_seller_based_commission'])
  • {{ translate('Sellers') }}
      @can('view_all_seller')
    • @php $sellers = \App\Models\Shop::where('verification_status', 0)->where('verification_info', '!=', null)->count(); @endphp {{ translate('All Seller') }} @if ($sellers > 0){{ $sellers }} @endif
    • @endcan @can('view_all_seller_rating_and_followers')
    • {{ translate('Seller Rating & Followers') }}
    • @endcan @can('seller_payment_history')
    • {{ translate('Payouts') }}
    • @endcan @can('view_seller_payout_requests')
    • {{ translate('Payout Requests') }}
    • @endcan @can('seller_commission_configuration')
    • {{ translate('Seller Commission') }}
    • @endcan @can('set_seller_based_commission')
    • {{ translate('Seller Based Commission') }}
    • @endcan @can('set_category_wise_commission')
    • {{translate('Category Based Commission')}}
    • @endcan @if (addon_is_activated('seller_subscription')) @can('view_all_seller_packages')
    • {{ translate('Seller Packages') }} @if (env('DEMO_MODE') == 'On') @endif
    • @endcan @endif @can('seller_verification_form_configuration')
    • {{ translate('seller_registration_form_inputs_label') }}
    • @endcan
  • @endcanany @endif {{-- Uploads Files --}} @if (env('ENABLE_ALL_UPLOADED_IMAGES') == true)
  • {{ translate('Media Library') }}
  • @endif @if (env('ENABLE_REPORT') == true) @canany(['earning_report', 'in_house_product_sale_report', 'seller_products_sale_report', 'products_stock_report', 'product_wishlist_report', 'user_search_report', 'commission_history_report', 'wallet_transaction_report'])
  • {{ translate('Reports') }}
      @can('earning_report')
    • {{ translate('Earning Report') }}
    • @endcan @if (env('ENABLE_INHOUSE_PRODUCT') == true) @can('in_house_product_sale_report')
    • {{ translate('In House Product Sale') }}
    • @endcan @endif @if (env('ENABLE_SELLER') == true) @can('seller_products_sale_report')
    • {{ translate('Seller Products Sale') }}
    • @endcan @endif @can('products_stock_report')
    • {{ translate('Products Stock') }}
    • @endcan @can('product_wishlist_report')
    • {{ translate('Products wishlist') }}
    • @endcan @can('user_search_report')
    • {{ translate('User Searches') }}
    • @endcan @if (env('ENABLE_SELLER') == true) @can('commission_history_report')
    • {{ translate('Commission History') }}
    • @endcan @can('wallet_transaction_report')
    • {{ translate('Wallet Recharge History') }}
    • @endcan @endif
  • @endcanany @endif @if (env('ENABLE_BLOG') == true) @canany(['view_blogs', 'view_blog_categories'])
  • {{ translate('Blog System') }}
      @can('view_blogs')
    • {{ translate('All Posts') }}
    • @endcan @can('view_blog_categories')
    • {{ translate('Categories') }}
    • @endcan
  • @endcanany @endif @if (env('ENABLE_MARKETING') == true) @canany(['view_all_flash_deals', 'view_all_dynamic_popups', 'view_all_custom_alerts', 'manage_email_templates', 'send_newsletter', 'notification_settings', 'view_all_notification_types', 'send_custom_notification', 'view_custom_notification_history', 'send_bulk_sms', 'view_all_subscribers', 'view_all_coupons'])
  • {{ translate('Marketing') }}
      @can('view_all_flash_deals')
    • {{ translate('Flash deals') }}
    • @endcan {{-- @can('view_all_dynamic_popups')
    • {{ translate('Dynamic Pop-up') }}
    • @endcan --}} {{-- @can('view_all_custom_alerts')
    • {{ translate('Custom Alert') }}
    • @endcan --}} @can('manage_email_templates')
    • {{ translate('Email Templates') }}
      • {{ translate('Admin Templates') }}
      • {{ translate('Seller Templates') }}
      • {{ translate('Customer Templates') }}
      • {{ translate('Common Templates') }}
    • @endcan @can('send_newsletter')
    • {{ translate('Newsletters') }}
    • @endcan {{-- @canany(['notification_settings', 'view_all_notification_types', 'send_custom_notification', 'view_custom_notification_history'])
    • {{translate('Notification')}}
        @can('notification_settings')
      • {{translate('Settings')}}
      • @endcan @can('view_all_notification_types')
      • {{translate('Notification Types')}}
      • @endcan @can('send_custom_notification')
      • {{translate('Custom Notification')}}
      • @endcan @can('view_custom_notification_history')
      • {{translate('Custom Notification History')}}
      • @endcan
    • @endcanany --}} {{-- @if (addon_is_activated('otp_system') && auth()->user()->can('send_bulk_sms'))
    • {{ translate('Bulk SMS') }} @if (env('DEMO_MODE') == 'On') @endif
    • @endif --}} @can('view_all_subscribers')
    • {{ translate('Subscribers') }}
    • @endcan @if (get_setting('coupon_system') == 1 && auth()->user()->can('view_all_coupons'))
    • {{ translate('Coupon') }}
    • @endif
  • @endcanany @endif @if (env('ENABLE_SUPPORT') == true) @canany(['view_all_support_tickets', 'view_all_product_conversations', 'view_all_product_queries'])
  • {{translate('Support')}}
      @can('view_all_support_tickets') @php $support_ticket = DB::table('tickets') ->where('viewed', 0) ->select('id') ->count(); @endphp
    • {{translate('Ticket')}} @if ($support_ticket > 0){{ $support_ticket }}@endif
    • @endcan @can('view_all_product_conversations') @php $conversation = \App\Models\Conversation::where('receiver_id', Auth::user()->id)->where('receiver_viewed', '0')->get(); @endphp
    • {{translate('Product Conversations')}} @if (count($conversation) > 0) {{ count($conversation) }} @endif
    • @endcan @if (get_setting('product_query_activation') == 1) @can('view_all_product_queries')
    • {{ translate('Product Queries') }}
    • @endcan @endif @can('view_all_contacts')
    • {{ translate('Contacts') }}
    • @endcan
  • @endcanany @endif {{-- @if (addon_is_activated('affiliate_system')) @canany(['affiliate_registration_form_config', 'affiliate_configurations', 'view_affiliate_users', 'view_all_referral_users', 'view_affiliate_withdraw_requests', 'view_affiliate_logs'])
  • {{translate('Affiliate System')}} @if (env('DEMO_MODE') == 'On') @endif
      @can('affiliate_registration_form_config')
    • {{translate('Affiliate Registration Form')}}
    • @endcan @can('affiliate_configurations')
    • {{translate('Affiliate Configurations')}}
    • @endcan @can('view_affiliate_users')
    • {{translate('Affiliate Users')}}
    • @endcan @can('view_all_referral_users')
    • {{translate('Referral Users')}}
    • @endcan @can('view_affiliate_withdraw_requests')
    • {{translate('Affiliate Withdraw Requests')}}
    • @endcan @can('view_affiliate_logs')
    • {{translate('Affiliate Logs')}}
    • @endcan
  • @endcanany @endif --}} {{-- @if (addon_is_activated('club_point')) @canany(['club_point_configurations', 'set_club_points', 'view_users_club_points'])
  • {{translate('Club Point System')}} @if (env('DEMO_MODE') == 'On') @endif
      @can('club_point_configurations')
    • {{translate('Club Point Configurations')}}
    • @endcan @can('set_club_points')
    • {{translate('Set Product Point')}}
    • @endcan @can('view_users_club_points')
    • {{translate('User Points')}}
    • @endcan
  • @endcanany @endif --}} {{-- @if (addon_is_activated('otp_system')) @canany(['otp_configurations', 'sms_templates', 'sms_providers_configurations', 'send_bulk_sms'])
  • {{translate('OTP System')}} @if (env('DEMO_MODE') == 'On') @endif
      @can('otp_configurations')
    • {{translate('OTP Login Configuration')}}
    • {{translate('OTP Configurations')}}
    • @endcan @can('sms_templates')
    • {{translate('SMS Templates')}}
    • @endcan
  • @endcanany @endif --}} @if (env('ENABLE_PAYMENT_METHOD') == true) @canany(['payment_methods_configurations', 'african_pg_configuration', 'african_pg_credentials_configuration', 'view_all_manual_payment_methods', 'view_all_offline_payment_orders', 'view_all_offline_wallet_recharges', 'view_all_offline_customer_package_payments', 'view_all_offline_seller_package_payments', 'asian_payment_gateway_configuration'])
  • {{translate('Payment gateways')}}
      @can('payment_methods_configurations')
    • {{translate('Payment Methods')}}
    • @endcan @if (addon_is_activated('cybersource') && auth()->user()->can('cybersource_pg_configuration'))
    • {{translate('Cybersource Payment Gateway')}}
    • @endif @if (addon_is_activated('paytm') && auth()->user()->can('asian_payment_gateway_configuration'))
    • {{translate('Asian Payment Gateway')}}
    • @endif @if (addon_is_activated('african_pg')) @canany(['african_pg_configuration', 'african_pg_credentials_configuration'])
    • {{translate('African Payment Gateway')}}
    • @endcanany @endif @if (addon_is_activated('offline_payment')) @canany(['view_all_manual_payment_methods', 'view_all_offline_payment_orders', 'view_all_offline_wallet_recharges', 'view_all_offline_customer_package_payments', 'view_all_offline_seller_package_payments'])
    • {{translate('Offline Payment System')}} @if (env('DEMO_MODE') == 'On') @endif
        @can('view_all_manual_payment_methods')
      • {{translate('Manual Payment Methods')}}
      • @endcan @can('view_all_offline_payment_orders')
      • {{translate('Offline Payment Orders')}}
      • @endcan @can('view_all_offline_wallet_recharges')
      • {{translate('Offline Wallet Recharge')}}
      • @endcan @if (get_setting('classified_product') == 1 && auth()->user()->can('view_all_offline_customer_package_payments'))
      • {{translate('Offline Customer Package Payments')}}
      • @endif @if (addon_is_activated('seller_subscription') && auth()->user()->can('view_all_offline_seller_package_payments'))
      • {{translate('Offline Seller Package Payments')}}
      • @endif
    • @endcanany @endif
  • @endcanany @endif @if (env('ENABLE_WEBSITE_SETUP') == true) @canany(['header_setup', 'footer_setup', 'view_all_website_pages', 'website_appearance', 'authentication_layout_settings'])
  • {{ translate('Website Setup') }}
      {{-- @can('select_homepage')
    • {{translate('Select Homepage')}}
    • @endcan --}} @can('edit_website_page')
    • {{ translate('Homepage Settings') }}
    • @endcan {{-- @can('authentication_layout_settings')
    • {{translate('Authentication Layout & Settings')}}
    • @endcan --}} @can('header_setup')
    • {{ translate('Header') }}
    • @endcan @can('footer_setup')
    • {{ translate('Footer') }}
    • @endcan {{-- @can('view_all_website_pages')
    • {{translate('Pages')}}
    • @endcan --}} @can('website_appearance')
    • {{ translate('Appearance') }}
    • @endcan
  • @endcanany @endif @if(env('ENABLE_GENERAL_SETTINGS') == true) @canany(['general_settings', 'features_activation', 'language_setup', 'currency_setup', 'vat_&_tax_setup', 'pickup_point_setup', 'smtp_settings', 'payment_methods_configurations', 'order_configuration', 'file_system_&_cache_configuration', 'social_media_logins', 'facebook_chat', 'facebook_comment', 'analytics_tools_configuration', 'google_recaptcha_configuration', 'google_map_setting', 'google_firebase_setting', 'shipping_configuration', 'shipping_country_setting', 'manage_shipping_states', 'manage_shipping_cities', 'manage_zones', 'manage_carriers'])
  • {{translate('Setup & Configurations')}}
      @can('features_activation')
    • {{translate('Features activation')}}
    • @endcan @can('language_setup')
    • {{translate('Languages')}}
    • @endcan @can('currency_setup')
    • {{translate('Currency')}}
    • @endcan @can('vat_&_tax_setup')
    • {{translate('Vat & TAX')}}
    • @endcan @can('pickup_point_setup')
    • {{translate('Pickup point')}}
    • @endcan @can('smtp_settings')
    • {{translate('SMTP Settings')}}
    • @endcan @can('order_configuration')
    • {{translate('Order Configuration')}}
    • @endcan @can('file_system_&_cache_configuration')
    • {{translate('File System & Cache Configuration')}}
    • @endcan @can('social_media_logins')
    • {{translate('Social media Logins')}}
    • @endcan @canany(['facebook_chat', 'facebook_comment'])
    • {{translate('Facebook')}}
        @can('whatsapp_chat')
      • {{translate('WhatsApp Chat')}}
      • @endcan @can('facebook_comment')
      • {{translate('Facebook Comment')}}
      • @endcan
    • @endcanany @canany(['analytics_tools_configuration', 'google_recaptcha_configuration', 'google_map_setting', 'google_firebase_setting'])
    • {{translate('Google')}}
        @can('analytics_tools_configuration')
      • {{translate('Analytics Tools')}}
      • @endcan @can('google_recaptcha_configuration')
      • {{translate('Google reCAPTCHA')}}
      • @endcan @can('google_map_setting')
      • {{translate('Google Map')}}
      • @endcan @can('google_firebase_setting')
      • {{translate('Google Firebase')}}
      • @endcan
    • @endcanany @canany(['shipping_configuration', 'shipping_country_setting', 'manage_shipping_states', 'manage_shipping_cities', 'manage_zones', 'manage_carriers'])
    • {{translate('Shipping')}}
        @can('shipping_configuration')
      • {{translate('Shipping Configuration')}}
      • @endcan @can('shipping_country_setting')
      • {{translate('Shipping Countries')}}
      • @endcan @can('manage_shipping_states')
      • {{translate('Shipping States')}}
      • @endcan @can('manage_shipping_cities')
      • {{translate('Shipping Cities')}}
      • @endcan @can('manage_zones')
      • {{translate('Shipping Zones')}}
      • @endcan @can('manage_carriers')
      • {{translate('Shipping Carrier')}}
      • @endcan
    • @endcanany
  • @endcanany @endif @if(env('ENABLE_STAFF') == true) @canany(['view_all_staffs', 'view_staff_roles'])
  • {{ translate('Staffs') }}
      @can('view_all_staffs')
    • {{ translate('All staffs') }}
    • @endcan @can('view_staff_roles')
    • {{ translate('Staff permissions') }}
    • @endcan
  • @endcanany @endif @if(env('ENABLE_SYSTEM_UPDATE') == true) @canany(['system_update', 'server_status'])
  • {{translate('System')}}
      @can('system_update')
    • {{translate('Update')}}
    • @endcan @can('server_status')
    • {{translate('Server status')}}
    • @endcan @can('sitemap_generator')
    • {{translate('Sitemap Generator')}}
    • @endcan
  • @endcanany @endif {{-- @can('manage_addons')
  • {{translate('Addon Manager')}}
  • @endcan --}}
  • {{ translate('Logout') }}