“вернуть перенаправление с помощью сообщения Laravel” Ответ

Ларавел перенаправляет обратно

return Redirect::back()->withErrors(['msg', 'The Message']);

and inside your view call this

@if($errors->any())
<h4>{{$errors->first()}}</h4>
@endif
Indian Gooner

вернуть перенаправление с помощью сообщения Laravel

Route::post('user/profile', function () {
    // Update the user's profile...

    return redirect('dashboard')->with('status', 'Profile updated!');
});
Dr.Paashaas

Ларавел перенаправляет обратно с ошибками и вводом

return redirect()->back()->withInput();
Bug Killer

Redirect :: route (profile) и с () в Laravel

// For a route with the following URI: profile/{id}

return redirect()->route('profile', [$user]);
Lucky Loris

Laravel Redirect с сообщением в раздел

//redirct to previous page with message at a specific setion :)
return redirect(url()->previous() .'#comments')->with('success', 'Data Your Comment has been created successfully');
Xenophobic Xenomorph

Redirect :: route (profile) и с () в Laravel

// For a route with the following URI: profile/{id}

return redirect()->route('profile', ['id' => 1]);
Lucky Loris

Ответы похожие на “вернуть перенаправление с помощью сообщения Laravel”

Вопросы похожие на “вернуть перенаправление с помощью сообщения Laravel”

Больше похожих ответов на “вернуть перенаправление с помощью сообщения Laravel” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования