@extends('layouts.admin', ['title' => 'آمار بازدید روزانه']) @section('content')
| نام و نام خانوادکی | همراه | ایمیل | نقش | |
|---|---|---|---|---|
| {{ $item->first_name . ' ' . $item->last_name }} | {{ $item->mobile }} | {{ $item->email }} | @if(isset($item->roles)) @foreach($item->roles as $role) {{ $role->title }} @endforeach @else @foreach(\App\Models\User::find($item->id)->roles as $role) {{ $role->title }} @endforeach @endif @if($item->profile_activity_type == 'pro' && $item->profile_user_type == 'natural') حرفهای - حقیقی @elseif($item->profile_activity_type == 'pro' && $item->profile_user_type == 'legal') حرفهای - حقوقی @elseif($item->profile_activity_type == 'default' && $item->profile_user_type == 'natural') عادی- حقیقی @elseif($item->profile_activity_type == 'default' && $item->profile_user_type == 'legal') عادی - حقوقی @endif | پروفایل اطلاعات بیشتر |