Answers for "send data with redirect laravel"

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, 
       'vat' => $vat, 
       'Transaction_vat' => $Transaction_vat
]);
Posted by: Guest on October-09-2021

Code answers related to "send data with redirect laravel"

Browse Popular Code Answers by Language