の前のレコードをbuttons
代わりのhref
を使用して、次、前のレコードを取得する方法を、取得次とlaravel
例えば
<form method="post" action="/">
//Question and options will come here,
//when click on next button next question should appear and
// if I click on prev button it should goto prev question
<button type ="submit">Next Question
<button type ="submit">Previous Question
</form>
私のコントローラ
$questions = Question::find($qId);
$options = Question::find($qId)->options;
$previous = Question::where('id', '<', $questions->id)->max('id');
$next = Question::where('id', '>', $questions->id)->min('id');
return view('Pages/User/Questions/Question2')
->with('options',$options)
->with('questions',$questions)
->with('previous',Question::find($previous))
->with('next',Question::find($next));
さて、次を送信する方法プレビューボタンid
を送信します。
、あなたが理解してほしいですか? –
@Sagar Gautam yes –
隠れた入力フィールドを使用するだけで問題はありますか? –