@extends('body') @section('title') Users Details @endsection @section('breadcrumbs')
  • Home
  • Roles
  • {{ $role->name }}
  • @endsection @section('pageScripts') @endsection @section('content')

    Role Rights

    {{ $role->name }}

    Rights Enabled

    {{--

    $0 / month

    --}}
      @foreach ($enabledPermissions as $enabledPermission)
    • @csrf @method('PATCH')
      @if (Auth::user()->isAuthorized('rights.update') == true) @endif
    • @endforeach
    @if (Auth::user()->isAuthorized('rights.store') == true)

    Rights

      @foreach ($availablePermissions as $availablePermission)
    • @csrf
    • @endforeach
    @endif
    @endsection