如何在导航栏上单击时自动重新加载页面?我有这行代码。当血液活动已经超过活动结束日期时,此代码会删除通知。
我有一张这样的桌子。
Latest Blood Campaign
---------------------------------------------------
id CampaignTitle CampaignAddress CampaignStartDate CampaignEndDate
1 Blood Letting New York 2016-02-24 2016-02-26
Admin Send Notifications
------------------------------------------------------------
id receiver messageBody
1 jk Please come to our blood campaign
My code to delete notification.
<?php
$dateToday2 = '2016-02-29';
$latest2 = LatestBloodCampaign::all();
foreach ( $latest2 as $data2 )
if($dateToday2 <= $data2->campaignEndDate)
{ }else{
DB::table('admin_send_notifications')
->where('receiver', 'jk')
->where('messageBody', $notification->messageBody)
->delete();
} ?>
我将这行代码放入通知页面中,因此当它加载时会自动删除,但只有点击导航栏时它才会删除。
答案 0 :(得分:0)
您需要创建专用于删除Campaigns
的路线。路线的链接将触发路线,响应应该是重定向回到服务初始页面的路线。