Код: Выделить всё
if (Mail::failures()){
$res_data = [
'msg' => __('Mail Send Failed'),
'type' => 'danger'
];
}
return redirect()->back()->with($res_data);
}
Подробнее здесь: https://stackoverflow.com/questions/772 ... -not-exist
Код: Выделить всё
if (Mail::failures()){
$res_data = [
'msg' => __('Mail Send Failed'),
'type' => 'danger'
];
}
return redirect()->back()->with($res_data);
}