824286145

1870 经验值

Shift+ mac + / 快捷键注释时 会同时 显示 出 help Search ,
在 快捷键设置里面 搜索 这个 Shift+ mac + /
只找到 块注释的这个设置,
也没找到第二个是设置成这样的
,怎么关闭 help Search



       protected function sendLockoutResponse(Request $request)
    {
        $seconds = $this->limiter()->availableIn(
            $this->throttleKey($request)
        );

        Flashy::message('Welcome Aboard!', 'http://your-awesome-link.com');

        $message = Lang::get('auth.throttle', ['seconds' => $seconds]);

        return redirect()->back()
            ->withInput($request->only($this->username(), 'remember'))
            ->withErrors([$this->username() => $message]);
    }


Route::get('/', function () {
    return view('welcome');
});

Auth::routes();

Route::get('/home', 'HomeController@index');
//Route::get('/captcha/{random}','CaptchaController@captcha');

//Route::get('/logout','LoginController@logout');

Route::get('/captcha/{config?}',function(Mews\Captcha\Captcha $captcha,$config='default'){
    return $captcha->create($config);
});


    <script src="/js/app.js"></script>
    @include('flashy::message')

不显示消息

   protected function sendLockoutResponse(Request $request)
{
    $seconds = $this->limiter()->availableIn(
        $this->throttleKey($request)
    );

    Flashy::message('Welcome Aboard!', 'http://your-awesome-link.com');

    $message = Lang::get('auth.throttle', ['seconds' => $seconds]);

    return redirect()->back()
        ->withInput($request->only($this->username(), 'remember'))
        ->withErrors([$this->username() => $message]);
}

Route::get('/', function () {

return view('welcome');

});

Auth::routes();

Route::get('/home', 'HomeController@index');
//Route::get('/captcha/{random}','CaptchaController@captcha');

//Route::get('/logout','LoginController@logout');

Route::get('/captcha/{config?}',function(Mews\Captcha\Captcha $captcha,$config='default'){

return $captcha->create($config);

});

<script src="/js/app.js"></script>
@include('flashy::message')

composer create-project laravel/laravel=5.2.0 lv5.2.0
Installing laravel/laravel (v5.2.0)

  • Installing laravel/laravel (v5.2.0)
    Loading from cache

Created project in lv5.2.0

php -r "copy('.env.example', '.env');"
php artisan clear-compiled

PHP Warning: require(/Users/user/PHP/www/laravel/laravist/lv5.2.0/bootstrap/../vendor/autoload.php): failed to open stream: No such file or directory in /Users/user/PHP/www/laravel/laravist/lv5.2.0/bootstrap/autoload.php on line 17
PHP Fatal error: require(): Failed opening required '/Users/user/PHP/www/laravel/laravist/lv5.2.0/bootstrap/../vendor/autoload.php' (include_path='.:') in /Users/user/PHP/www/laravel/laravist/lv5.2.0/bootstrap/autoload.php on line 17

Warning: require(/Users/user/PHP/www/laravel/laravist/lv5.2.0/bootstrap/../vendor/autoload.php): failed to open stream: No such file or directory in /Users/user/PHP/www/laravel/laravist/lv5.2.0/bootstrap/autoload.php on line 17

Fatal error: require(): Failed opening required '/Users/user/PHP/www/laravel/laravist/lv5.2.0/bootstrap/../vendor/autoload.php' (include_path='.:') in /Users/user/PHP/www/laravel/laravist/lv5.2.0/bootstrap/autoload.php on line 17
Script php artisan clear-compiled handling the pre-update-cmd event returned with error code 255