@php $title = translate('Do you want to move to Trash'); $text = translate('If You trash, Organization and Organization related all data will be trashed.'); @endphp {{ translate('Organization Manage') }}
{{ translate('Refresh') }}
@if ($organizations->count() > 0)
@foreach ($organizations as $organization) @php $userInfo = $organization->userable ?? null; $userableTranslations = []; $designationTranslations = []; if ($userInfo) { $userableTranslations = parse_translation($userInfo); } $name = $userableTranslations['name'] ?? $userInfo?->name ?? ''; @endphp @endforeach
{{ translate('Profile') }} {{ translate('Email') }} {{ translate('Phone') }} {{ translate('Total Instructors') }} {{ translate('Total Course') }} {{ translate('Email Verify') }} {{ translate('Status') }} {{ translate('Action') }}
@if (fileExists('lms/organizations', $organization?->userable?->profile_img) == true && $organization?->userable?->profile_img != '') organization @else organization @endif
{{ $organization?->email }} {{ $organization?->userable?->phone }} {{ $organization?->organizationInstructors?->count() }} {{ $organization?->organizationCourses?->count() }}
@if ($organization->trashed()) @php $title = translate('Do you want to move to Trash'); $text = translate( 'If You delete It ,Organization and Organization related all data will be delete Permanently.', ); @endphp @else @endif
{{ $organizations->links('portal::admin.pagination.paginate') }}
@else @endif