@extends('layouts.admin') @section('pageTitle') Best Insurance | Completed Leads @stop @section('pageCss') @stop @section('content')
@if(isset($policy_prefix)) {{--*/ $policy_number = $policy_prefix->policy_prefix.$information->policy_number_full /*--}} @else {{--*/ $policy_number = '' /*--}} @endif @if(isset($policy_prefix)) {{--*/ $policy_pre = $policy_prefix->policy_prefix /*--}} @else {{--*/ $policy_pre = '' /*--}} @endif @if(isset($policy_prefix->product_name)) {{--*/ $product_name = $policy_prefix->product_name /*--}} @else {{--*/ $product_name = '' /*--}} @endif @if(isset($information->insurer)) {{--*/ $insurer = $information->insurer /*--}} @else {{--*/ $insurer = '' /*--}} @endif

@if($product_name != '' && $policy_number != '') {{$product_name}} - {{$policy_number}} @else View Plolicy @endif

@if($information->status == 0)

Rejected!

Comment: {{$information->comments_for_rejection}}

@endif
{!! Form::open(array('url' => 'account/update-completed-lead')) !!}
{{ Form::hidden('id', $information->id)}}

Customer Personal information

{!! Form::label('Name') !!} :
{{$information->fname.' '.$information->lname}}
{!! Form::label('Date Of Birth ') !!} :
{{$information->dob}}
{!! Form::label('Primary Occupation') !!} :
{{$information->occupation_name}}
{!! Form::label('Telephone') !!} :
{{$information->telephone}}
{!! Form::label('Mobile') !!} :
{{$information->mobile}}
{!! Form::label('Email') !!} :
{{$information->email}}
{!! Form::label('Age') !!} :
{{$information->age}}
{!! Form::label('Martial Status') !!} :
{{$information->martial_status}}
{!! Form::label('Employee Status') !!} :
{{$information->emp_status}}

Customer Address information

{!! Form::label('Address') !!} :
{{$address}}
{!! Form::label('Postcode') !!} :
{{$information->postcode}}
{!! Form::label('Premise Name') !!} :
{{$information->premiseName}}
@if(count($mailtracker)>0)

Notes

    @foreach($mailtracker as $mail_data) @if($mail_data->mt_type == 1) @elseif($mail_data->mt_type == 2) @elseif($mail_data->mt_type == 3) @else @endif
  • mt_id}}>{{$type}}: {{$mail_data->created_at->format('d/m/Y,h:m')}}, {{ucwords(strtolower($information->fname))}} {!!'Email Sent Subject:'.$subject!!}
  • @endforeach
@endif

Product/Policy information

{!! Form::label('Policy Number') !!} :
{{$policy_number}}
{!! Form::label('Status') !!} :
{!!$status!!}
{!! Form::label('Product Name') !!} :
{{$product_name}}
{!! Form::label('Insurer') !!} :
{{$policy_prefix->insurer}}
{!! Form::label('Insurance Startdate') !!} :
{{date('d-m-Y', strtotime($information->insurance_startdate))}}
{!! Form::label('Monthly Cost') !!} :
£{{ number_format((float)str_replace(',','',$information->monthlycost), 2, '.', '') }}
{!! Form::label('Pricing Plan') !!} :
{{$information->title}}
{!! Form::label('Child Cover') !!} :
{{$information->child_cover?'Yes':'No'}}
{!! Form::label('Health Cover') !!} :
{{$information->health_cover?'Yes':'No'}}
{!! Form::label('Kids Care') !!} :
{{$information->kids_cover?'Yes':'No'}}
{!! Form::label('Sports Cover') !!} :
{{$information->sports_cover?'Yes':'No'}}
{!! Form::label('Who is paying') !!} :
{{$information->who_will_be_paying}}
{!! Form::label('Affiliate Id') !!} :
{{$information->affid}}
{!! Form::label('Lead Source Field') !!} :
{{$information->lead_source_field}}

Bank Details

{!! Form::label('Account Name') !!} :
{{$information->accountname}}
{!! Form::label('Account Number') !!} :
{{$information->accountnumber}}
{!! Form::label('IBAN') !!} :
{{$information->iban}}
{!! Form::label('Bank Bic') !!} :
{{$information->bankbic}}
{!! Form::label('Branch Bic') !!} :
{{$information->branchbic}}
{!! Form::label('Town') !!} :
{{$information->town}}
{!! Form::label('Bank Phone') !!} :
{{$information->bank_phone}}
{!! Form::label('Sortcode') !!} :
{{$information->sortcode}}
{!! Form::label('Bank') !!} :
{{$information->bank}}
{!! Form::label('Branch') !!} :
{{$information->branch}}
{!! Form::label('Branch Address') !!} :
{{$information->branch_address}}
{!! Form::label('Bank Postcode') !!} :
{{$information->bank_postcode}}
@stop @section('pageBottomJs') @stop