@extends(decide_template()) @section('title', $pageTitle) @section('page_styles') @endsection @section('page_scripts') @endsection @section(decide_content()) @if (Session::has('msg'))
{{ Session::get('msg') }}
@endif
@if(routeAccess('staff.roles.create')) @endif
@foreach($roles as $index => $role) @endforeach
{{trans('common.label.id')}} {{trans('staff_management.role.view.table_heading.name')}} {{trans('common.table_heading.created_on')}} {{trans('common.table_heading.actions')}}
{{$index + 1}} {{ ($role->name)}} {{ strtotime($role->created_at)}} {{ showDateTime(Auth::user()->id, $role->created_at , 1)}} @if($role->id != 1) @else --- @endif
@endsection