displore 增加研报的评论
CommentController.php
store方法:
SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。else if($source_type === 'research'){ $source = ResearchReport::find($source_id); $notify_subject = $source->title; $notify_type = 'comment_research'; $notify_refer_type = 'research'; $notify_refer_id = 0; }
show方法:
else if($source_type === 'research'){ $source = ResearchReport::find($source_id); }
路由(增加过滤):
/*加载评论*/ Route::get('{source_type}/{source_id}/comments',['as'=>'ask.comment.show','uses'=>'CommentController@show'])->where(['source_type'=>'(question|answer|article|video|research)','source_id'=>'[0-9]+']);

更多精彩