2016年5月2日 星期一

修正 laravel: Relationship method must return an object of type Illuminate\Database\Eloquent\Relations\Relation

應該是呼叫 model 方法是不正確

檢查是不是呼叫一個方法,如果是,改為加上 ( )

(如 $this->save  應該改為 $this->save() )

參考:
http://stackoverflow.com/questions/23773467/laravel-relationship-method-must-return-an-object-of-type-illuminate-database-e

 
#我不會寫code但我會google

沒有留言:

張貼留言

若你看的文章,時間太久遠的問題就別問了,因為我應該也忘了... XD

Vue multiselect set autofocus and tinymce set autofocus

要在畫面一進來 focus multiselect 的方式: 參考: https://jsfiddle.net/shentao/mnphdt2g/ 主要就是在 multiselect 的 tag 加上 ref (例如: my_multiselect), 另外在 mounted...