{{getTicketNotification()}}
@php
// Determine the URL based on the role
if (role() == 'CRM Support') {
$url = 'support/tickets/crm-support';
} elseif (role() == 'Technical Support') {
$url = 'support/tickets/it-helpdesk'; // Assuming this is the correct URL for this role as well
} else {
$url = 'support/tickets'; // Default URL if needed
}
@endphp