我试图只将登录用户创建的帖子传递到表单中的laravelcollective / html选择下拉菜单。
在我的代码中,我有两个例子。使用变量示例显示我如何获取下拉选择菜单以显示posts表中的所有结果。在foreach循环中使用变量 posts 显示我如何只返回由已登录用户创建的帖子,而不是在选择菜单中。
我需要使用示例在表单中显示下拉菜单功能,但显示foreach 帖子循环的结果。
控制器
public function createPost()
{
$example = Post::pluck('title', 'id')->all();
$posts = Posts::all();
return view('post.create', compact('posts', 'example'));
}
示例视图
<div class="form-group">
{!! Form::label('example', 'Posts:') !!}
{!! Form::select('example', ['' => 'Select'] + $example, null) !!}
</div>
Foreach循环帖子视图
@foreach($posts as $post)
@if(Auth::user()->id == $post->user_id)
{{ $post->title }} <br>
@endif
@endforeach
答案 0 :(得分:3)
尝试$posts = Posts::where('user_id',\Auth::id())->get()->pluck('title','');
。它只会返回登录用户的帖子。
{{ Form::select('example', $posts) }}
您使用的选择框错误。
@foreach($posts as $post)
@if(Auth::user()->id == $post->user_id)
{{ $post->title }} <br>
@endif
@endforeach
答案 1 :(得分:3)
我会将您的控制器更新为仅返回用户的帖子,而不是依赖foreach检查Auth::user()->id == $post->user_id
public function createPost()
{
$posts = Posts::where('user_id', auth()->user()->id)->get();
return view('post.create', compact('posts'));
}
作为旁注,您的方法应该只是create()
以保持与标准CRUD的内联。
然后在你的刀片中,
<div class="form-group">
{!! Form::label('post', 'Posts:') !!}
{!! Form::select('post', ['' => 'Select'] + $posts, null) !!}
</div>