@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 +")}}
@if(!empty(getVendorSettings('whatsapp_phone_numbers')))
@foreach (getVendorSettings('whatsapp_phone_numbers') as $whatsappPhoneNumber)
@endforeach
@elseif(getVendorSettings('current_phone_number_id'))
@endif
@foreach (getListOfPermissions() as $permissionKey => $permission)
{{ $permission['title'] }}
@if (!empty($permission['description']))
{{ $permission['description'] }}
@endif
@endforeach
{{--
--}}
{{--
{{ __tr('First Name') }} |
{{ __tr('Last Name') }} |
{{ __tr('Username') }} |
{{ __tr('Email') }} |
{{ __tr('Mobile Number') }} |
{{ __tr('Created At') }} |
{{ __tr('Status') }} |
{{ __tr('Action') }} |
--}}
@push('appScripts')
@endpush
@viteReactRefresh
@vite('resources/js/datatable.jsx')
@endsection()