@extends('dashboard.layouts.app') @section('title', __('dashboard.Roles')) @section('page_heading', __('dashboard.Roles')) @section('breadcrumb') @endsection @section('content')

{{ __('dashboard.Roles') }}

@foreach($roles as $role) @endforeach @if($roles->isEmpty()) @endif
{{ __('dashboard.Name') }} {{ __('dashboard.Guard Name') }} {{ __('dashboard.Created At') }} {{ __('dashboard.Actions') }}
{{ $role->name }} {{ $role->guard_name }} {{ $role->created_at->format('d M Y, h:i A') }}
@csrf @method('DELETE')
{{ __('dashboard.No roles found.') }}
{{ $roles->links() }}
@endsection