Answers for "laravel redirect resource"

PHP
1

laravel response redirect

#Method 1 with route name
return redirect()->route('login');

#Method 2 back with input
return back()->withInput();

#Method 2 using a url
return redirect('/home/dashboard');
Posted by: Guest on August-25-2021
0

how to create resource in laravel

php artisan make:model -a -r modelName
Posted by: Guest on July-31-2021

Browse Popular Code Answers by Language