@extends('layouts.admin') @section('title') @lang('Role') @endsection @section('breadcrumb')

@lang('Role')

@endsection @section('content')
@forelse ($roles as $item) @empty @endforelse
@lang('Name') @lang('Permission') @lang('Action')
{{ $item->name }} @if ($item->section) @foreach (json_decode($item->section) as $permission) {{ $permission }} @endforeach @endif
@lang('No Data Found')
@endsection @push('script') @endpush