Support the ongoing development of Laravel.io →
Database Eloquent Architecture

I am currently building a menu/category package for my blog which should have the ability to be unlimited nested which already works but the problem is that I have to process the array manually after I get the data from the database.

Here are the data from the database and some code that is relevant https://gist.github.com/h0kx/515001b05c407f67c9d0

As you can see there Hip Hop/Rock are children of Music and Street is a child of Hip Hop. Now my issue is that I have to remove the subcategories that are listed in the root-array manually and I need to place Hip Hop manually into Music so that it lists Hip Hop with it's subcategory in Music.

So my question is if there is any way to retrieve the whole tree structure right from the database based on the parent_id without the need of further processing after that so that the subcategories are all in the parent arrays and not in the root array?

Currently my stuff looks like original-outcome.php but it should like desired-outcome.php from the ist.

Last updated 2 years ago.
0

Want you want is a recursive method that calls itself as it loops through the nested tree.

Here is an example... notice what happens is we set the children to an array, if there are children the function calls itself, and it will keep calling itself as long as it keeps finding children.

//BUILD THE TREE


$tree = array();
//GET TOP LEVEL ITEMS
$top_level = select id, name from menu where parent = 0;
foreach($top_level as $top){
	$branch = array();
	$branch['id'] = $top->id;
	$branch['name'] = $top->name;
	$children = select id, name from menu where parent = $top->id;
	//CHECK FOR CHILDREN
	if(count($children > 0)) {
		//THERE ARE CHILDREN PASS THEM TO A RECURSIVE FUNCTION TO GET LIST
		$branch['children'] = getChildren($children)
	else {
		//THERE ARE NO CHILDREN SET TO EMPTY ARRAY
		$branch['children'] = array();
	}
	$tree[] = $branch;
}

function getChildren($children) {
	foreach($children as $child){
		$child_branch = array();
		$child_branch['id'] = $child->id;
		$child_branch['name'] = $child->name;
		$children = select id, name from menu where parent = $child->id;
		//CHECK FOR CHILDREN
		if(count($children > 0)) {
			//THERE ARE CHILDREN PASS THEM TO THIS FUNCTION (RECURSION) TO GET LIST
			$child_branch['children'] = getChildren($children)
		else {
			//THERE ARE NO CHILDREN SET TO EMPTY ARRAY
			$child_branch['children'] = array();
		}

		return $child_branch;
	}
}
Last updated 2 years ago.
0

You can also create a recursive method to traverse the tree and display the potentially unlimited nested items.

Last updated 2 years ago.
0

Yeah, that is how I solved it for the moment but I thought there might be a way to retrieve the menu tree from the database without the need of further processing. Seems like I need to stick with that solution.

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

h0kx h0kx Joined 19 Apr 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.