@extends('backend.admin-master') @section('style') @include('backend.partials.datatable.style-enqueue') @endsection @section('site-title') {{__('All Admin Roles')}} @endsection @section('content')

{{__('All Admin Roles')}}

@foreach($roles as $role) @endforeach
{{__('ID')}} {{__('Name')}} {{__('Action')}}
{{$role->id}} {{$role->name}} @if($role->name != 'Super Admin') @else {{__('super admin has all access')}} @endif
@endsection @section('script') @include('backend.partials.datatable.script-enqueue',['onlyjs' => true]) @endsection