{!! Form::open([ 'url' => 'voucher/bduk_export_redeem', 'id' => 'bduk_redeem_export', 'enctype' => 'multipart/form-data']) !!} {!! Form::hidden('lead_id', $lead->id) !!} {!! Form::close() !!} {!! Form::open([ 'url' => 'voucher/bduk_export_request', 'id' => 'bduk_csv_form_export', 'enctype' => 'multipart/form-data']) !!} {!! Form::hidden('lead_id', $lead->id) !!} {!! Form::close() !!} {!! Form::open([ 'url' => 'voucher/export_redeem', 'id' => 'csv_form_export', 'enctype' => 'multipart/form-data']) !!} {!! Form::hidden('lead_id', $lead->id) !!} {!! Form::close() !!} {!! Form::open([ 'url' => 'voucher/export_leads', 'id' => 'csv_form_export', 'enctype' => 'multipart/form-data']) !!} {!! Form::hidden('lead_id', $lead->id) !!} {!! Form::close() !!} @if(!$lead->isVoucher())
!warning this customers does not seem to have an address in our voucher areas
@elseif($lead->voucher_consent != 1) !warning this customers voucher consent state is {!! config('enum.voucher_consent_states')[$lead->voucher_consent] !!} @endif {!! Form::model($lead, ['route' => ['lead.update', $lead->id], 'id' => 'customer_start_quote_form', 'class' => 'my-3' ]) !!} @method('PATCH')
Voucher state: {!! Form::select('voucher_consent', config('enum.voucher_consent_states'), null) !!}
Voucher id: {!! Form::text('dcms_voucher', null) !!}
Unavailable reason: {!! Form::text('voucher_unavailable_reason', null) !!}
{!! Form::close() !!}

Voucher reminder

Emailing customer reminding them to progress their voucher claim.

Chase customer approval

Template emails to remind customer to respond to governments email.

@php $initiate_defaults = [ 'subject' => 'Please initiate your voucher', 'body' => 'You have just been emailed instructions separately by the government on how to secure your properties voucher for your upcoming fibre installation. (be sure to check your junk/spam folder). Please make sure you find that email, read it and follow the instructions in order to initiate your properties voucher. This needs to be done before your upcoming appointment.' ]; $approve_defaults = [ 'subject' => 'Please validate your voucher', 'body' => 'You have just been emailed instructions separately by the government on how to validate your properties voucher to cover the costs of your fibre installation. (be sure to check your junk/spam folder). Please make sure you find that email, read it and follow the instructions in order to cover your installation costs. This needs to be done before your voucher expires. Rest assured our after care team will continue to support you with any issues you may have regarding your WiFi or other support requirements.' ]; @endphp
@if(auth()->user() && auth()->user()->isPermitted("super")) Claim async @endif