@php /** * Component : User * Controller : UserController * File : User.list.blade.php * ----------------------------------------------------------------------------- */ @endphp @extends('layouts.app', ['title' => __tr('Departments')]) @section('content') @include('users.partials.header', [ 'title' => __tr('Departments'), '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'] }}


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