You can add an onclick call at your view:
<a href ="{{ route('year_setups.review_recall', ['id' => $goalmanager->employee_id])}}" class="btn btn-info" onclick="confirmation(event)">
<i class="fas fa-minus-circle"></i> Recall
</a>
Then at the confirmation function you can do something like:
function confirmation(e) {
e.preventDefault();
var url = e.currentTarget.getAttribute('href')
Swal.fire({
icon: 'warning',
title: 'Are you sure?',
text: 'This action cannot be undone!',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, recall!'
}).then((result) => {
if (result.value) {
window.location.href=url;
}
})
}
Hope this helps!