我想使用单个控制器来保存我对多个模型的评论.所以我使用以下存储方法创建了CommentController:
public function store(Teacher $teacher, Request $request)
{
$input = $request->all();
$comment = new Comment();
$comment->user_id = Auth::user()->id;
$comment->body = $input['body'];
$teacher->comments()->save($comment);
return redirect()->back();
}
在我看来,我有:
{!! Form::open([
'route' => ['teachers.comments.store', $teacher->id]
]) !!}
这很有效.如果我想使用相同的CommentController存储学校的注释,我应该如何修改控制器的存储方法?
解决方法:
我不确定这是否是Laravel的召唤,但我做了以下事情:
做了一条路线:
Route::post('/Comment/{model}/{id}', [
// etc
]);
然后在控制器中获取模型并检查允许的模型数组,传递id并附加:
public function store(Request $request, $model, $id) {
$allowed = ['']; // list all models here
if(!in_array($model, $allowed) {
// return redirect back with error
}
$comment = new Comment();
$comment->user_id = $request->user()->id;
$comment->commentable_type = 'App\\Models\\'.$model;
$comment->commentable_id = $id;
$comment->body = $request->body;
$comment->save();
return redirect()->back();
}
就像我说的那样,最有可能实现更好的方法,但这就是我做到的.它保持简短和甜蜜,并检查模型是否可以发表评论.