[Vuejs]-Laravel + vuejs spa app with role-base authetication || @websanova || @tymon

0👍

edit users table and add role column or change vue-auth

1-edit users table

//users table
$table->string('role');

2- edit vue-auth config

//vue-auth
rolesKey: 'status'

Leave a comment