我正在尝试运行php artisan
命令时更改异常错误消息
工匠指挥部:
php artisan exportdata {$brand}
命令代码:
$brand = Brand::where('brand_name', $input_brand)->first();
运行命令时终端显示错误
ErrorException:尝试获取非对象的属性“自行车”
我确实尝试过奔跑,但这没用 错误捕获代码:
try {
// Code;
} catch (Exception $e) {
$this->error('This brand does not exist');
}
但是完整的ErrorException方法仍在终端中显示。
谢谢。