在Laravel 8中,要将post id从foreach循环转移到报表页面的表单中,可以按照以下步骤进行操作:
use App\Models\Post;
public function report()
{
$posts = Post::all();
return view('report', compact('posts'));
}
<form action="/submit-report" method="POST">
@csrf
@foreach($posts as $post)
<input type="checkbox" name="post_ids[]" value="{{ $post->id }}"> {{ $post->title }}<br>
@endforeach
<button type="submit">提交报表</button>
</form>
use Illuminate\Http\Request;
public function submitReport(Request $request)
{
$postIds = $request->input('post_ids');
// 将$postIds存储到报表相关的表中,进行进一步处理
// ...
return redirect('/report')->with('success', '报表提交成功');
}
这样,你就可以将post id从foreach循环转移到报表页面的表单中,并在提交表单后进行相应的处理。请根据实际需求进行适当的调整和扩展。
注意:以上答案中没有提及具体的腾讯云产品和链接地址,因为这些信息需要根据具体的业务需求和腾讯云的产品特点来选择,建议根据实际情况进行调研和选择合适的腾讯云产品。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云