I have an unordered like that acts as my navigation and a large portion of it consists of category names that I store in my database. Because this navigation is outputted on every page I placed it in my layout. I unfortunately can't for the life of me figure out how to get an array retrieved from my database to pass to my layout.
$this->set('allCategories', $allCategories);
This line of code in my controller both in 'beforeFilter()' and 'index()' still doesn't allow me to use the $allCategories array in my layout.
The documentation tells me to use elements and while I setup a category element I still don't know how to pass my $allCategories array to it because it's called from the layout.
Should dynamic content not be served in a layout? I would hate to have to place this simple database query/list generator in every view...
UPDATE
And now I feel like an ass. All my problems went away after I added the view for index(). I assumed that since I was working in my layout first I didn't need to bother with normal views until after I got my layout working. I was quite wrong. So if you ever come across this problem again kids, add a view, even if it's an empty file.
