save data from route

Solutions on MaxInterview for save data from route by the best coders in the world

showing results for - "save data from route"
Sophia
03 Feb 2017
1use Illuminate\Support\Facades\Route;
2
3Route::get('/greeting', function () {
4    return 'Hello World';
5});