Laravel在重定向之前弹出消息?

时间:2017-03-21 16:45:15

标签: php redirect laravel-5

我是laravel 5.1的新手。案例是我在向我的电子邮件发送消息后使用一些消息来通知用户。 代码如下:

$nama = input::get("name");
$email = input::get("email");
$subject = input::get("subject");
$message->from($email,$nama);
$message->to('<<your email@<<your domain>>.com')->subject($subject);

并使用弹出警报重定向到同一页面

return Redirect::to('/')->with('success',true)->with('message','Thankyou '.$nama.' for contacting me<br>I will reply asap !');

但过程是它首先重定向然后弹出消息,我想要的是与过程相反的。 有没有办法做到这一点?您的所有建议都表示赞赏:)

0 个答案:

没有答案