我是ajax和laravel的新手。我想每秒自动刷新一次Web应用程序的通知。问题是它不会随机显示重定向消息,例如错误或会话消息。
这是设置间隔功能以每秒收集一次noti计数。
setInterval(function(){
$('#noti_span').load("noti_count");
},1000);
在这些条件下,即使存在错误或会话,也请转至!errors,!session条件。
@if (isset($verify) || count($errors)>0 || session('info') )
<h2> Withdraw Money </h2>
Available amount : {{ $amount }} MMK
<form action="{{ URL::to('user\WithdrawMoney') }}" method="post">
<input type="hidden" name="_token" value="{{ csrf_token() }}">
<input type="number" name="WithdrawAmount" class="hide" placeholder="Withdraw Amount" required><br>
<input type="submit" value="Enter" style="margin-top:10px">
</form>
@endif
@if (!isset($verify) && !count($errors) && !session('info') )
<h2 style="color:red;">You have not permission to access withdraw money operation.</h3>
@endif