@extends('layouts.admin') @section('title', 'User Details - ' . $user->name) @section('content')
Joined {{ $user->created_at->format('F d, Y') }}
{{ $user->about_me }}
| Property | Price | Status | Date Listed | Action |
|---|---|---|---|---|
|
@if($property->thumbnail)
{{ Str::limit($property->headline, 30) }}
{{ Str::limit($property->location, 30) }}
|
£{{ number_format($property->portal_sale_price ?? $property->price, 2) }} | @if($property->status === 'approved') Approved @elseif($property->status === 'pending') Pending @else {{ $property->status }} @endif | {{ $property->created_at->format('d M, Y') }} |
This agent hasn't listed any properties yet.
| Property | Offer Amount | Status | Date | Action |
|---|---|---|---|---|
|
@if($offer->property && $offer->property->thumbnail)
{{ $offer->property ? Str::limit($offer->property->headline, 30) : 'Deleted Property' }}
@if($offer->property)
View Property
@endif
|
£{{ number_format($offer->offer_amount, 2) }} | @if($offer->status === 'accepted') Accepted @elseif($offer->status === 'rejected') Rejected @else Pending @endif | {{ $offer->created_at->format('d M, Y') }} | @if($offer->property) @endif |
This user hasn't made any offers on properties yet.