1
我試圖在數據庫上保存圖像以用作網站的背景。問題是,我得到Call to a member function fill() on null
Laravel 5.4獲取調用成員函數fill()null
這裏是我做過什麼
https://paste.laravel.io/ZoWBM
我試圖在數據庫上保存圖像以用作網站的背景。問題是,我得到Call to a member function fill() on null
Laravel 5.4獲取調用成員函數fill()null
這裏是我做過什麼
https://paste.laravel.io/ZoWBM
這僅僅意味着在SiteSettings
模型name_setting = $key
沒有任何記錄。
你應該總是做這樣的檢查:
if (is_null($siteSettingsUpdate)) {
// There is no such record in DB.
}