@extends('backend.master_structure') @section('content') @if(Session::has('data-added')) @endif @php use App\MemberListingModel; $MemberListingModelInstance = new MemberListingModel(); $website_currency = $MemberListingModelInstance->get_website_currency_symbol(); @endphp

Lead #{{$leads_data->lead_id}}

@if($leads_data->user_id != NULL) @php $lead_price = $MemberListingModelInstance->get_member_lead_price($leads_data->user_id); @endphp @else @php $lead_price = $MemberListingModelInstance->get_member_lead_price_utoken($leads_data->utoken); @endphp @endif @if($leads_data->lead_status == 2) {{-- --}} @endif
Lead Status @if($leads_data->lead_status == 1) Pending @elseif($leads_data->lead_status == 2) Accepted @else Declined @endif
Date Matched {{$leads_data->revision_timestamp}}
Lead Price {{$website_currency}}{{$lead_price->lead_price}}Lead Price {{$website_currency}}{{$lead_price->lead_price}}
Name {{$leads_data->lead_name}}
Location {{$leads_data->lead_location}}
Email {{$leads_data->lead_email}}
Phone Number {{$leads_data->lead_phone}}
Preferred Reply Day
Preferred Reply Time
Message {{$leads_data->lead_message}}
Origin Page {{$leads_data->url_from}}
@if($leads_data->lead_status == 1)
@if($lead_price->lead_price == 0) Accept Lead @else @endif
@endif
@include('backend.lead_purchasemodal') @endsection