i have made a rootscope function in which I am actually logging out the user. But I dont know how to call it in a view . 
My functions is
    $rootScope.logout = function () {
            $cookies.remove('auth_token');
            $cookies.remove('role');
            $cookies.remove('status');
            $cookies.remove('id');
            $location.path('/signin');
//            window.alert("Logout Successfully");
            $rootScope.auth_token = $cookies.get('auth_token');
            $rootScope.role = $cookies.get('role');
            $rootScope.status = $cookies.get('status');
            $rootScope.id = $cookies.get('id');
            $rootScope.keyword_auth_token = 'Bearer ' + $rootScope.auth_token; //Need to store all of them 
            $rootScope.is_loggedin = false;
        };
My view is
<button ng-click="$root.logout()">Logout</button>
I have tried $root.logout(), $rootScope.logout() but its not working.
 
     
    