@extends('layouts.app') @section('title','Benutzer') @section('breadcrumb') @endsection @section('content')

Benutzer

Hinzufügen
@foreach ($users as $user) @endforeach
Name E-Mail Rechte  
{{ $user->name or ' '}} {{ $user->email }} {{ join(', ',array_map(function($item){return config("acl.roles.$item");},$user->capabilities())) }} @include('components.button_show',['action' => action('UserController@show',$user)]) @include('components.button_edit',['action' => action('UserController@edit',$user)])
@endsection