@extends('layouts.admin') @section('title', 'Manage Investors') @section('content')
Total Investors
| Investor Name | Contact Info | Budget | Investment Preferences | Locations | @if(auth()->user()->role === 'admin')Added By | @endifActions |
|---|---|---|---|---|---|---|
|
{{ $investor->name }}
@if($investor->is_cash_buy)
Cash Buyer
@endif
|
{{ $investor->email ?? 'N/A' }}
{{ $investor->phone ?? 'N/A' }}
|
@if($investor->min_budget || $investor->max_budget)
£{{ number_format($investor->min_budget/1000, 0) }}k - £{{ number_format($investor->max_budget/1000, 0) }}k
@elseif($investor->budget)
Up to £{{ number_format((float) preg_replace('/[^0-9.]/', '', $investor->budget)/1000, 0) }}k
@else
Not specified
@endif
|
@if($investor->deals_of_interest) @foreach($investor->deals_of_interest as $deal) {{ $deal }} @endforeach @else None set @endif |
@if($investor->areas_of_interest)
@foreach($investor->areas_of_interest as $area)
{{ $area }}
@endforeach
@else
{{ $investor->location ?? 'N/A' }}
@endif
|
@if(auth()->user()->role === 'admin')
{{ $investor->agent->name ?? 'N/A' }}
{{ $investor->agent->role ?? '' }}
|
@endif
|
|
No investors found in your list. Add First Investor |
||||||