[Vuejs]-How to use cartalyst sentinel permission check in laravel vue spa?

0👍

You could return an array with all the permissions and save it in your vue state and then to verify a permission you could do the following:

<button v-if="permisions['user.delete']" >delete user</button>

Leave a comment