Answers for "pass data from laravel redirect method"

PHP
1

laravel web php request to redirect to another page

Route::get('/{any}', function () {
    return redirect('https://questa.uz');
})->where('any', '.*');
Posted by: Guest on December-20-2021
0

Passing values to blade using redirect() and back() functions

return redirect()->back()->with('fee', $fee)
        ->with('vat', $vat)
        ->with('Transaction_vat', $Transaction_vat);
Posted by: Guest on October-09-2021

Code answers related to "pass data from laravel redirect method"

Browse Popular Code Answers by Language