@extends('layouts.backend.master') @section('title', 'Roles') @section('breadcrumbs')

{{__('Roles') }}

@endsection @section('content')
@foreach($roles as $role) @endforeach
# {{__('Name') }} {{__('Created At') }}
{{ $loop->iteration }} {{ $role->name }} {{ $role->created_at->format('d-m-Y') }}
@endsection