简体   繁体   中英

Coding in laravel Voyager

I'm using Voyager which is Laravel Admin that support BREAD operation. As part of my learning, I dig deep into their coding style. I'm confused about how they're calling and displaying side menu from 'resources/views/dashboard/sidebar.blade.php'.

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

Any sort of help in understanding coding is highly appreciable!

its a vue component

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

should be found in in Resources/js/component/AdminMenu.vue its binding :items props data

if its not located there check Resources/js/app.js and search for admin-menu if you found check the directory of AdminMenu.vue Directory looks like this

Vue.component('admin-menu', require('./components/AdminMenu.vue').default);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM