より複雑なクエリでデータを取得するために、モデル内にカスタム関数を作成したいのですが、メソッドが未定義であるというエラーが発生します。
//Model
class Host extends Eloquent {
//custom function
//or public static function
public function allWithUser() {
}
}
//Controller
//or Host::allWithUser();
$hosts = with(new Host)->allWithUser();