是否可以从ajax请求中触发flash消息。
$.ajax({
url: '/product/destroy/',
type: 'post',
data: {id:id, _method: 'delete', _token: '{{ csrf_token() }}' },
success:function(data) {
//trigger the flash message here
}
});
我想你需要在laravel中访问会话?