Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
protected function setupCategories() {
$categories = Category::where('taxonomy', 'category')->get();
foreach($categories as $category) {
$data = $category->createObject();
array_push($this->dataObject, $data);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment