@extends('layout.main') @section('content')

{{__('nav.roles')}}

{{-- add button right aligned --}}
{{-- Online --}}
@if (Auth::user()->can('role-create')) @endif
@forelse($roles as $role ) @empty @endforelse
{{__('nav.role')}} {{__('nav.guard')}} {{__('nav.action')}}
{{$role->name}} {{$role->guard_name}}
@if( Auth::user()->can('role-edit') && $role->name != 'attorney')@endif @if(Auth::user()->can('role-delete') && $role->name != 'attorney') @endif
@endsection @push('scripts') @endpush('scripts')