@extends('admin.layouts.app') @section('content')

{{ __('Role')}}

@include('admin.message')
{{ __('All Roles')}}
@foreach($rows as $row) @endforeach
{{ __('Name')}} {{ __('Date')}}
{{ucfirst($row->name)}} {{ display_date($row->updated_at)}}
{{$rows->links()}}
@endsection