- アプリケーションキーの生成
$ php artisan key:generate
- .gitignoreの編集
### Composer ###
composer.phar
/vendor
### PHP Coding Standards Fixer ###
.php_cs.cache
### Node ###
/node_modules
## Laravel ##
.env
## Laravel Homestead ##
/.vagrant
Homestead.yaml
Homestead.json- .gitattributesの編集
* text=auto
*.min.js binary
*.min.css binary
*.css linguist-vendored
*.scss linguist-vendored
/public/js/**/* binary
/public/css/**/* binary
/public/build/**/* binary
/public/vendor/**/* binary
gulpfileを編集してgulpコマンドを叩く
gulp watchコマンドを叩いてresources->assetsの中にあるファイルを編集
flash()->info('Message')
flash()->success('Message')
flash()->error('Message')
flash()->warning('Message')
flash()->overlay('Modal Message', 'Modal Title')
これをroute.phpまたはcontrollerに書く。 リダイレクト先のメッセージを出したい場所で
@include('flash::message')