@extends('layouts.admin.adminlayout')
@section('content')
@include('users.user-navigation-header-layout')
{{ getPhrase('sno')}} |
{{ getPhrase('role_name')}} |
{{ getPhrase('display_name')}} |
{{ getPhrase('description')}} |
{{ getPhrase('action')}} |
@foreach($roles as $record)
{{$record->id}} |
{{ucfirst($record->name)}} |
{{ucfirst($record->display_name)}} |
{{ucfirst($record->description)}} |
|
@endforeach
@include('users.user-navigation-footer-layout')
@endsection
@section('footer_scripts')
@stop