|string> */ public function rules(): array { return [ 'url' => [ 'required', function ($attribute, $value, $fail) { // 检查文件是否存在默认存储对象系统中 if (!Storage::exists($value)) { $fail('url file does not exist'); } }, ], ]; } }