0
私は私のクエリ.this Laravel 5.3を使用して、私は結果の配列に「children_rec」は「ノード」に名称変更します。雄弁に関係関数の名前を変更するにはどうすればいいですか?
$boxes = Boxes::with('children_rec')
->whereNull('box_id')
->with('position')
->get()
->toJson(128);
UPDATE: 関係コード:
public function child()
{
return $this
->hasMany('PTA_OIMS\Boxes', 'box_id');
}
public function children_rec()
{
return $this->child()
->with('children_rec')
->with('position');
}
おかげ
リターン構造はどのようなものが見えますか?なぜあなたは配列を操作できないのですか? – tadman
@tadman:結果構造ます。https://pastebin.com/NFfWS0s2 –
関連するすべてのコードが含まれるようにあなたの質問を編集して、雑然とコメントとして追加しないでください。 – tadman