Could you please help me?
My template is built in angular js and using in a Laravel project. I can view the template and functionalities are working.
My problem is sidebar links are not working. How can we solve this issue?
sidebar.blade.php
<li class="" ui-sref-active="active">
<a ui-sref="app.calendar"><span class="title">Calendar</span></a>
<span class="icon-thumbnail"><i class="pg-calender"></i></span>
</li>
config.js
.state('app.calendar', {
url: '/calendar',
templateUrl: 'tpl/apps/calendar/calendar.blade.php',
resolve: {
deps: ['$ocLazyLoad', function($ocLazyLoad) {
return $ocLazyLoad.load([
'switchery',
'jquery-ui',
'moment',
'hammer'
], {
insertBefore: '#lazyload_placeholder'
})
.then(function() {
return $ocLazyLoad.load([
'pages/js/pages.calendar.min.js',
'assets/js/apps/calendar/calendar.js'
])
});
}]
}
})
How can I integrate sidebar properly in laravel?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community