@extends('layouts.app') @section('title', 'buyer | '.config('app.name')) @section('style') @endsection @section('content')

All Signed Offers by me

{{-- Add Buyer --}}
@foreach($buyers as $buyer) {{-- @dd($buyer)--}} @endforeach
Offer ID Buyer Buyer Email Type Signature Actions
{{ $buyer->offer_id}} {{ $buyer->buyer->name }} {{ $buyer->buyer->email }} {{ $buyer->offer->type }} @if ($buyer->signature == 1) Signed @else Sign Contract @endif Download Signed Agreement @if (!is_null($buyer->contract)) @endif
@endsection @section('script') @endsection