@extends('pdf') @section('content-area')

@lang('All roles list')

@foreach ($roles as $key => $role) @endforeach
@lang('#') @lang('Role Name') @lang('Created At')
{{ ++$key }} {{ $role['name'] }} {{ \Carbon\Carbon::parse($role['created_at'])->format('d-M-Y') }}
@endsection