Giter VIP home page Giter VIP logo

laravel-permission-to-vuejs's Introduction

Laravel permission to Vuejs

Update: now support Vue 3

npm package

Total Downloads Version License

Composer package

Total Downloads License

After installed you can do like this in Vuejs:

<div v-if="can('edit post')">
  <!-- Edit post form -->
</div>

<div v-if="is('super-admin')">
  <!-- Show admin tools -->
</div>

<!-- you can use OR operator -->
<div v-if="can('edit post | delete post | publish post')">
  <!-- Do something -->
</div>

<div v-if="is('editor | tester | user')">
  <!-- Do something -->
</div>

<!-- you can use AND operator -->
<div v-if="can('edit post & delete post & publish post')">
  <!-- Do something -->
</div>

<div v-if="is('editor & tester & user')">
  <!-- Do something -->
</div>

This package require to use laravel-permission

Installation

PHP side
composer require ahmedsaoud31/laravel-permission-to-vuejs=dev-master
JavaScript side VueJs 3
npm i laravel-permission-to-vuejs
JavaScript side VueJs 2

Config

First, add the LaravelAndVueJS\Traits\LaravelPermissionToVueJS trait to your User model(s):

use LaravelAndVueJS\Traits\LaravelPermissionToVueJS;

// Spatie package
use Spatie\Permission\Traits\HasRoles;

class User extends Authenticatable
{
    use LaravelPermissionToVueJS;
    
    // Spatie package
    use HasRoles;

    // ...
}

Second, add and use the laravel-permission-to-vuejs plugin in app.js file:

import { createApp } from 'vue'
import LaravelPermissionToVueJS from 'laravel-permission-to-vuejs'
import App from './components/App.vue'
const app = createApp(App)
app.use(LaravelPermissionToVueJS)
app.mount('#app')

Third, pass permissions from Laravel To Vuejs, in HTML header add this code:

<script type="text/javascript">
    window.Laravel = {
        csrfToken: "{{ csrf_token() }}",
        jsPermissions: {!! auth()->check()?auth()->user()->jsPermissions():0 !!}
    }
</script>

##OR use Axios to get permissons data from server

// in app.js
axios.get('/get-permissions').then(
  response => {
    window.Laravel.jsPermissions = response.data;
  }
);
import LaravelPermissionToVueJS from 'laravel-permission-to-vuejs'

...

.use(LaravelPermissionToVueJS)

// in laravel route
Route::get('/get-permissions', function () {
    return auth()->check()?auth()->user()->jsPermissions():0;
});

License

The MIT License (MIT).

laravel-permission-to-vuejs's People

Contributors

ahmedsaoud31 avatar engveloper avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.