@extends('backend.admin-master') @section('style') @endsection @section('site-title') {{__('All Admin Role')}} @endsection @section('content') @php $all_permission_list = array( "Video Gallery", "Admin Manage", "About Page Manage", "Users Manage", "Quote Manage", "Newsletter Manage", "Package Orders Manage", "All Payment Logs", "Pages Manage", "Menus Manage", "Widgets Manage", "Popup Builder", "Form Builder", "Blogs Manage", "Job Post Manage", "Events Manage", "Products Manage", "Donations Manage", "Knowledgebase", "Home Variant", "Topbar Settings", "Home Page Manage", "Contact Page Manage", "Feedback Page Manage", "Services", "Case Study", "Gallery Page", "404 Page Manage", "Faq", "Brand Logos", "Price Plan", "Team Members", "Testimonial", "Counterup", "General Settings", "Languages", "Courses Manage", "Appointment Manage", "Support Tickets", "Email Templates", ); @endphp
@include('backend/partials/message')

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

@foreach($all_role as $data) @endforeach
{{__('ID')}} {{__('Role')}} {{__('Permissions')}} {{__('Action')}}
{{$data->id}} {{$data->name}}
@php $all_per = json_decode($data->permission); @endphp @foreach($all_per as $per) {{ucwords(str_replace('_',' ',$per))}} @endforeach

{{__('Add New Admin Role')}}

@csrf
{{__('assign permission to role, which page can seen by the this role')}}
@endsection @section('script') @endsection