0

Can anyone guide me where is

{{ menu('admin', '_json') }}

coming from in below code?

<admin-menu :items="{{ menu('admin', '_json') }}"></admin-menu>

Link of Github

Ali Raza
  • 59
  • 2
  • 7

1 Answers1

0

It comes from Voyagers MenuBuilder (Laravel cms):

Link in your Laravel app (if you set PORT to 8000): http://127.0.0.1:8000/admin/menus

Here are the docs: https://voyager-docs.devdojo.com/core-concepts/menus-and-menu-builder#menu-as-json

_json is for retrieving menu items in form of an array.

Lukas Coorek
  • 187
  • 1
  • 11