Как вернуться на предыдущую страницу после сохранения данных в Laravel? - PullRequest
0 голосов
/ 12 июля 2020

Я новичок в laravel. Я создаю этот проект и здесь, после сохранения данных, я хочу вернуться в свое предыдущее состояние.

public function storeData(Request $request){
    // dd($request->all());
    $this->validate($request,[
        'Province'=>'required',
        'District' => 'required|max:100|min:3',
        'Electrorate' => 'required|max:100|min:3',
        'PollingBooth' => 'required|max:100|min:3',
        'issueTitle' => 'required|max:160|min:3',
        'issueDetails'=>'required|max:500|min:30',
        'issueCategory'=>'required'
    ]);
            $pollingbooth = new pollingbooth;
    $pollingbooth->Province=$request->Province;
    $pollingbooth->District=$request->District;
    $pollingbooth->Electrorate=$request->Electrorate;
    $pollingbooth->PollingBooth=$request->PollingBooth;
    $pollingbooth->issueTitle=$request->issueTitle;
    $pollingbooth->issueDetails=$request->issueDetails;
    $pollingbooth->issueCategory=$request->issueCategory;
    $pollingbooth->save();

    $pollingBoothNames=pollingbooth::all();
    //  dd ($pollingBoothNames);
    return view('issues')->with('pollingBoothNamez',$pollingBoothNames);
    // return redirect()->back();

}

выше - мой код. Я пробовал

        return view('issues')->with('pollingBoothNamez',$pollingBoothNames)->redirect()->back();

, но не повезло. что мне здесь делать? У меня такая же проблема с обновлением «Проблемы».

Ответы [ 3 ]

1 голос
/ 12 июля 2020
return redirect()->back();

или

return Redirect::to('your-route-url');
1 голос
/ 14 июля 2020

Это будет работать:

return redirect()->back()->with(''pollingBoothNamez', $pollingBoothNames);
1 голос
/ 12 июля 2020

Вы можете просто вызвать маршрут вот так return redirect('home/dashboard');

...