@extends('layouts.app') @section('content')
Role Management
@if (!config('app.is_demo')) Add Role @endif
@include('components.alert')
@foreach ($roles as $role) @endforeach
Name Description Creation Date Action
{{ $role->name }} {{ $role->description }} {{ $role->created_at }} @can('manage-users', auth()->user()) @if (!config('app.is_demo'))
@csrf
@endif @endcan
@include('layouts.footers.auth.footer')
@endsection @push('js') @endpush