Loops through each line of a txt file. Breaks each line up by pip symbol to find ilm data for address based off GPON serial number.
{!! Form::close() !!}
Updates information for addresses with a CSV file. Correct format of the CSV file should match the one that you can download above.
{!! Form::close() !!}
Updates dp_id and port from folder structure of KML file
Right click Save place as... on your Distribution points folder and save as a KML to upload here.
{!! Form::close() !!}
-
@foreach($report as $key => $val)
@if(!empty($val['error']))
-
Row {{ $key }}: {!! $val['info'] !!}
@if(is_array($val['error']) || is_object($val['error'])) @foreach($val['error'] as $col => $issues) @foreach($issues as $k => $description) {!! $description !!}. @endforeach @endforeach @elseif(is_string($val['error'])) {!! $val['error'] !!} @endif
@endif
@endforeach
| UPRN | Postcode | Line 1 | Customer | |||||
|---|---|---|---|---|---|---|---|---|
| {{ $adr->uprn }} | {{ $adr->postcode }} | {{ $adr->address_line_1 }} |
@if(!empty($adr->findLead()))
{{ $adr->findLead()->fullname }}
@if(!empty($adr->findLead()->user->notes))
Notes
@foreach($adr->findLead()->user->notes as $note)
{{ $note->created_at->diffForHumans() }}
{{ $note->body }}
@endif
@endif
@endforeach |
|||||
| Network state | @if(empty($_GET['order_by'])) @else @endif DP ID | Port | iLM reading | Pass/fail | OK for install | Date RFS | Forecast RFS | |
| {!! Form::select('network_state', config('enum.adr_network_states'), $adr->network_state, ['id' => 'adr_network_state'.$adr->id]) !!} | {!! Form::text('dp_id', $adr->dp_id, ['id' => 'adr_dp_id'.$adr->id, 'placeholder' => 'DP ID']) !!} | {!! Form::text('port', $adr->port, ['id' => 'adr_port'.$adr->id, 'placeholder' => 'Port']) !!} | {!! Form::text('ilm_reading', $adr->ilm_reading, ['id' => 'adr_ilm_reading'.$adr->id, 'placeholder' => 'ilm reading']) !!} | {!! Form::select('pass_fail', ['pass' => 'pass', 'fail' => 'fail'], $adr->pass_fail, ['id' => 'adr_pass_fail'.$adr->id]) !!} | {!! Form::select('ok_install', ['yes' => 'yes', 'no' => 'no'], $adr->ok_install, ['id' => 'adr_ok_install'.$adr->id]) !!} | {!! Form::text('date_rfs', $adr->date_rfs, ['id' => 'adr_date_rfs'.$adr->id, 'placeholder' => 'Date RFS']) !!} | {!! Form::text('forcast_rfs', $adr->forcast_rfs, ['id' => 'adr_forcast_rfs'.$adr->id, 'placeholder' => 'Forcasted RFS']) !!} | |