@extends('admin.layouts.app') @section('title', 'Show Admins') @section('content')

نمایش کاربران برنامه

نمایش کاربران برنامه
@if ($message = session('success'))
{{ $message }}
@endif
@forelse ($appUsers as $item) @empty @endforelse
# نام نام خانوادگی ایمیل پروژه ها کد معرف موجودی توکن عملیات
{{ $item->id }} {{ $item->Fname }} {{ $item->Lname }} {{ $item->email }} @php $projects = json_decode($item->projects); @endphp @if (!is_null($projects)) @if ($projects[0]->name === 'aifinalvision' && $projects[0]->force == 1) Ai Final Vision | @endif @if ($projects[1]->name === 'crxbot' && $projects[1]->force == 1) CRX Bot | @endif @if ($projects[2]->name === 'metaverse' && $projects[2]->force == 1) Metaverse @endif @endif {{ $item->invited }} @php $crypto_balances = json_decode($item->crypto_balances); @endphp @foreach ($crypto_balances as $item2) @foreach ($item2 as $key => $value) {{ $key }} : {{ $value }}, @endforeach
@endforeach
نمایش کاربر ai نمایش کاربر crx ویرایش @csrf @method('DELETE')
کاربری وجود ندارد!
@if (method_exists($appUsers, 'links'))
{!! $appUsers->links() !!}
@endif
@endsection