单击生成订单时,我创建了一个 PDF 对象。我想(在显示所有订单的结果后)删除表中的所有订单。我在路线上试过这个,但它不起作用?
//used to reset the orders in database
Route::filter('reset', function()
{
//once rendered the report remove all of the orders from db
DB::query("DELETE FROM orders");
});
报告的get请求如下:
Route::get('report', array('as' => 'report', 'after' => 'reset','uses' => 'admin@report'));
我将如何执行此操作,因为显然脚本在创建 PDF 之前就退出了。