├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── images ├── icon.png └── screenshot.gif ├── package.json └── snippets ├── arr.json ├── auth.json ├── broadcast.json ├── cache.json ├── collective_form_html.json ├── config.json ├── console.json ├── cookie.json ├── crypt.json ├── db.json ├── eloquent.json ├── event.json ├── hash.json ├── helper.json ├── log.json ├── mail.json ├── model.json ├── passport.json ├── redirect.json ├── relation.json ├── request.json ├── response.json ├── route.json ├── schema.json ├── session.json ├── storage.json ├── str.json └── view.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/**/* 2 | .gitignore 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/README.md -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/images/screenshot.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/package.json -------------------------------------------------------------------------------- /snippets/arr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/arr.json -------------------------------------------------------------------------------- /snippets/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/auth.json -------------------------------------------------------------------------------- /snippets/broadcast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/broadcast.json -------------------------------------------------------------------------------- /snippets/cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/cache.json -------------------------------------------------------------------------------- /snippets/collective_form_html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/collective_form_html.json -------------------------------------------------------------------------------- /snippets/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/config.json -------------------------------------------------------------------------------- /snippets/console.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/console.json -------------------------------------------------------------------------------- /snippets/cookie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/cookie.json -------------------------------------------------------------------------------- /snippets/crypt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/crypt.json -------------------------------------------------------------------------------- /snippets/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/db.json -------------------------------------------------------------------------------- /snippets/eloquent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/eloquent.json -------------------------------------------------------------------------------- /snippets/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/event.json -------------------------------------------------------------------------------- /snippets/hash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/hash.json -------------------------------------------------------------------------------- /snippets/helper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/helper.json -------------------------------------------------------------------------------- /snippets/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/log.json -------------------------------------------------------------------------------- /snippets/mail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/mail.json -------------------------------------------------------------------------------- /snippets/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/model.json -------------------------------------------------------------------------------- /snippets/passport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/passport.json -------------------------------------------------------------------------------- /snippets/redirect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/redirect.json -------------------------------------------------------------------------------- /snippets/relation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/relation.json -------------------------------------------------------------------------------- /snippets/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/request.json -------------------------------------------------------------------------------- /snippets/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/response.json -------------------------------------------------------------------------------- /snippets/route.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/route.json -------------------------------------------------------------------------------- /snippets/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/schema.json -------------------------------------------------------------------------------- /snippets/session.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/session.json -------------------------------------------------------------------------------- /snippets/storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/storage.json -------------------------------------------------------------------------------- /snippets/str.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/str.json -------------------------------------------------------------------------------- /snippets/view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onecentlin/laravel5-snippets-vscode/HEAD/snippets/view.json --------------------------------------------------------------------------------