我在嘗試複製表格行及其關係。在laravel中找不到replicate()方法5.2
,但我得到的是複製()的錯誤信息不存在,
我看到的計算器,許多人使用複製()沒有任何問題,但我得到這個錯誤
我控制器代碼
public function copyshowtime($cinema_id,$show_date)
{
$date=new Carbon($show_date);
$current_show_date=$date->format('Y-m-d');
$next_show_date=$date->addDay()->format('Y-m-d');
$movieshowtime=Movies_showtimes::with('showdata')->where([['cinema_id','=',$cinema_id],['show_date','=',$current_show_date]])->get();
$newshowtime=$movieshowtime->replicate();
return $newshowtime;
}
有沒有命名空間,我必須使用使用複製(),我無法得到解決方案也來自laravel網站。
幫助表示讚賞。
如果你做一個dd($ movieshowtime),你是否返回集合? – 2016-09-22 03:21:25