@extends('layouts.admin') @section('title', 'My Offers') @section('content')
| Property | Amount | Date | Status | Notes |
|---|---|---|---|---|
| {{ $offer->property->headline }} | £{{ number_format($offer->offer_amount, 2) }} | {{ $offer->created_at->format('d M Y') }} | @if($offer->status == 'pending') Pending @elseif($offer->status == 'accepted') Accepted @elseif($offer->status == 'rejected') Rejected @elseif($offer->status == 'completed') Completed @else {{ ucfirst($offer->status) }} @endif | {{ Str::limit($offer->notes, 50) ?: 'N/A' }} |
| You haven't made any offers yet. | ||||