php - Regex in route laravel?

one text

Solution:

Just do:

Route::get('tg', 'PP\PayPalController@getHooks');

and handle the GET parameter in the function:

public function getHooks(Request $request) {
    $tg = $request->query('tg');
    // do something with it now
}

Source