我正在学习关于 Laravel 的教程。我以前从未使用过它。教程说我应该使用 create a file withvim database/database.sql但是当我这样做时我收到错误:
vim : The term 'vim' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ vim
+ ~~~
+ CategoryInfo : ObjectNotFound: (vim:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Run Code Online (Sandbox Code Playgroud)
我尝试从 vim.org 安装 vim,但不知道这是否正确。任何帮助是极大的赞赏。我正在使用 Windows 10。
我已经开始了一个新的 Laravel 项目(我的第一个)。我创建了一些视图和路由等,但引导程序不起作用。我正在使用 Laravel 7。
我已按照以下步骤操作:https : //www.techiediaries.com/laravel/how-to-install-bootstrap-in-laravel-6-7-by-example/似乎可以正常工作
^ 在package.json文件中添加了引导程序:但它仍然无法正常工作。
"devDependencies": {
"axios": "^0.19",
"bootstrap": "^4.0.0",
"cross-env": "^7.0",
"jquery": "^3.2",
"laravel-mix": "^5.0.1",
"lodash": "^4.17.13",
"popper.js": "^1.12",
"resolve-url-loader": "^3.1.0",
"sass": "^1.15.2",
"sass-loader": "^8.0.0",
"vue-template-compiler": "^2.6.11"
}
Run Code Online (Sandbox Code Playgroud)
我做错了什么吗?我必须以某种方式链接它吗?任何帮助是极大的赞赏!