@extends('template.master') @section('page_styles') {{--CUSTOM STYLES HERE--}} @stop @section('content') @if (!is_null($citation)) @php $data_count = 0; $business_count_ok = 0; $business_count_errors = 0; $phone_count_ok = 0; $phone_count_errors = 0; $zip_count_ok = 0; $zip_count_errors = 0; @endphp @foreach ($citation as $data) @if ($data[0] !== 'Domain') @if ($data[9] === 'yes') @php $business_count_errors++; @endphp @else @php $business_count_ok++; @endphp @endif @if ($data[14] === 'yes') @php $phone_count_errors++; @endphp @else @php $phone_count_ok++; @endphp @endif @if ($data[12] === 'yes') @php $zip_count_errors++; @endphp @else @php $zip_count_ok++; @endphp @endif @php $data_count++; @endphp @endif @endforeach @php $business_percentage_ok = ($business_count_ok/$data_count)*100; $phone_percentage_ok = ($phone_count_ok/$data_count)*100; $zip_percentage_ok = ($zip_count_ok/$data_count)*100; @endphp @else @include('no_data', [ 'nd_title' => 'No Citation Report Available', 'nd_subtitle' => 'Our team will soon provide a citation report for you.' ]) @endif