Отключить поведение ссылки по умолчанию:
$("#delCat").click(function(e){
e.preventDefault();
//alert("test");
if(confirm('Are you sure want to delete this category ?')){
return true;
}else{
return false
}
});
Или непосредственно прилагается к ссылке:
<a id="delCat" href="delete-category/{{ $category->id }}" class="btn btn-danger btn-mini" onclick="return confirm('Are you sure?');">Delete</a>