First, create a helper folder
$ mkdir app/Helpers
Then create helper files, in my case I create route helper
$ touch app/Helpers/routes_helper.php
This is useful when you want to get the route by it's name
e.g. in your app/Http/routes.php
<?php
Route::get('auth/login', ['as' => 'auth.login', 'uses' => 'Auth\AuthController@getLogin']);
The as
is actually the route name. With this helper you can get the route like this
$route = route_from_name('auth.login');