Eloquent メソッドをオーバーライドしていますcreate()
が、呼び出そうとするとCannot make static method Illuminate\\Database\\Eloquent\\Model::create() non static in class MyModel
.
create()
私はこのようにメソッドを呼び出します:
$f = new MyModel();
$f->create([
'post_type_id' => 1,
'to_user_id' => Input::get('toUser'),
'from_user_id' => 10,
'message' => Input::get('message')
]);
そしてMyModel
クラスで私はこれを持っています:
public function create($data) {
if (!Namespace\Auth::isAuthed())
throw new Exception("You can not create a post as a guest.");
parent::create($data);
}
なぜこれが機能しないのですか?機能させるには何を変更すればよいですか?