@php /** * Component : User * Controller : UserController * File : User.list.blade.php * ----------------------------------------------------------------------------- */ @endphp @extends('layouts.app', ['title' => __tr('Team Members')]) @section('content') @include('users.partials.header', [ 'title' => __tr('Team Members'), 'description' => '', 'class' => 'col-lg-7' ])
{{__tr("Mobile number should be with country code without 0 or +")}}
{{ __tr('Permissions') }} @foreach (getListOfPermissions() as $permissionKey => $permission)
@if (isset($permission['description']) and $permission['description'])

{{ $permission['description'] }}

@if(!__isEmpty(data_get($permission, 'permissions'))) @foreach($permission['permissions'] as $subPermissionKey => $subPermission)
@if (isset($subPermission['description']) and $subPermission['description'])

{{ $subPermission['description'] }}

@endif
@endforeach @endif
@endif
@endforeach
{{ __tr('First Name') }} {{ __tr('Last Name') }} {{ __tr('Username') }} {{ __tr('Email') }} {{ __tr('Mobile Number') }} {{ __tr('Created At') }} {{ __tr('Status') }} {{ __tr('Action') }}
@endsection()