Commit 18f0896
修復 BasicInformationOfficesController 中的 Arr 類缺失問題 (cbdb-project#499)
修復內容:
1. 添加 use Illuminate\Support\Arr; import 語句
2. 將廢棄的 array_except() 改為 Arr::except()(第 212 行)
3. 修復 Arr::has() 的缺失 import 問題(第 276 行)
錯誤訊息:Class 'App\Http\Controllers\Arr' not found
根本原因:Laravel 6.0 廢棄了全局陣列輔助函數,需要使用 Illuminate\Support\Arr 類
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude <noreply@anthropic.com>1 parent e656751 commit 18f0896
1 file changed
Lines changed: 2 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| 12 | + | |
12 | 13 | | |
13 | 14 | | |
14 | 15 | | |
| |||
208 | 209 | | |
209 | 210 | | |
210 | 211 | | |
211 | | - | |
| 212 | + | |
212 | 213 | | |
213 | 214 | | |
214 | 215 | | |
| |||
0 commit comments