@foreach($serveyDetails as $key=>$data)
| Location - {{ $key+1 }} |
Service |
Bandwidth Qty |
Modal of connectivity |
Type |
Latitude/Longitude |
| {{ $data->location }} |
{{ $data->service }} |
{{ $data->bandwidth }} |
{{ $data->modal_of_connectivity }} |
{{ $data->modal_of_connectivity_type }} |
{{ $data->latlong }} |
@php
$sl = 1;
$reports = DB::table('site_servey_reports')
->where('site_survey_id',$data->servey_id)
->where('site_survey_details_id',$data->id)
->get();
@endphp
@foreach($reports as $reportsData)
| NTTN |
Nearest POP |
Pop Location (Lat/Long) |
Distance From POP (Meters) |
Required Equipment |
| {{ $reportsData->nttn }} |
{{ $reportsData->nearest_pop }} |
{{ $reportsData->pop_location }} |
{{ $reportsData->distance_from_pop }} |
{{ $reportsData->required_equipment }} |
| {{ $reportsData->survey_note }} |
@php $sl ++;@endphp
@endforeach
@endforeach