@extends('layouts.admin') @section('content')

User Detail

Back to Users
@if (!empty($user->image) && file_exists(public_path('storage/' . $user->image))) User Image @else @endif
{{ $user->name }}
Email: {{ $user->email }}
Status: @if ($user->status == 1) Enable @else Disable @endif
Role: {{ ucfirst($user->role) }}
Gender: {{ ucfirst($user->gender) }}
Country: {{ $user->country }}
Language: {{ $user->language }}
Phone: {{ $user->phone }}
Join Date: {{ $user->created_at->format('d M Y') }}

Projects

@foreach ($projects as $item) @endforeach
# Name Files Prompt Created At Action
{{ $loop->iteration }} {{ $item->name }} @if ($item->upload_status == 1) Yes @else No @endif {{ \Illuminate\Support\Str::limit($item->prompt, 10) }} {{ $item->created_at->format('d M, Y') }}
@endsection