“Kembalikan Redirect dengan pesan Laravel” Kode Jawaban

Laravel mengarahkan kembali

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

and inside your view call this

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

Kembalikan Redirect dengan pesan Laravel

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

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

Laravel mengarahkan kembali dengan kesalahan dan input

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

Redirect :: Route (Profile) dan dengan () di Laravel

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

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

Laravel mengarahkan kembali dengan pesan ke bagian

//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) dan dengan () di Laravel

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

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

Jawaban yang mirip dengan “Kembalikan Redirect dengan pesan Laravel”

Pertanyaan yang mirip dengan “Kembalikan Redirect dengan pesan Laravel”

Lebih banyak jawaban terkait untuk “Kembalikan Redirect dengan pesan Laravel” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya