Simpan data dari rute

use Illuminate\Support\Facades\Route;

Route::get('/greeting', function () {
    return 'Hello World';
});
Helpful Hummingbird