一次性安装 PHP、Nginx(Apache)、MySql 等,适合新手,安装简单,但是在 Windows 平台上,如果部署到 Linux 平台(通常生产环境都是基于 Linux 平台)可能存在兼容问题(常见的是目录、文件名的大小写),知名的有 [XAMPP] (https://www.apachefriends.org/) 、MAMP、Laragon 等。
C:/HashiCorp/Vagrant/embedded/gems/2.3.3/gems/childprocess-4.1.0/lib/childprocess/windows/process_builder.rb:44: in `encode!': "\\xE5" to UTF-8 in conversion from ASCII-8BIT to UTF-8 to UTF-16LE (Encoding::UndefinedConversionError)
Route::get('/users/{id}', [\App\Http\Controllers\UserController::class, 'show'])->name('users.show') 中的 id 即为路由参数, 访问的url 为: http://laravel-demo.test/users/1 , id 必须有值,如果 id 可以为空,则可以这样定义:
php artisan make:model Post --migration //或者 php artisan make:model Post -m
INFO Model [app/Models/Post.php] created successfully. INFO Migration [database/migrations/2022_12_15_105154_create_posts_table.php] created successfully.