Support the ongoing development of Laravel.io →
posted 9 years ago
Views

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?

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.