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

Roles

@if(Session::has('success')) @endif @if(Session::has('error')) @endif
@can('Create Role')  New Role @endcan @foreach($roles as $role) @endforeach
# Name Created At Action
{{$i}} {{$role->name}} {{date('M d, Y H:i A',strtotime($role->created_at))}}
@endsection