@extends('layouts.bootstrap') @section('title', 'User Profile - ' . $user->name) @section('content')
Viewing profile for: {{ $user->name }}
{{ $user->email }}
{{ $user->getRoleDisplayName() }} @if($user->id === auth()->id())| Product | Category | Status | Created |
|---|---|---|---|
| {{ $product->name }} | {{ $product->category->name ?? 'N/A' }} | {{ ucfirst($product->status) }} | {{ $product->created_at->format('M d, Y') }} |
No products created yet
| Tender | Status | Deadline | Created |
|---|---|---|---|
| {{ $tender->title }} | {{ ucfirst($tender->status) }} | {{ $tender->deadline ? $tender->deadline->format('M d, Y') : 'N/A' }} | {{ $tender->created_at->format('M d, Y') }} |
No tenders created yet
Activity tracking coming soon