Route::prefix('u/{username}')->group(function () {
    Route::get('/', [
        'uses' => 'Send\Home@index',
        'as' => 'send.index',
    ]);