@extends('template.master') @section('page_styles') {{--CUSTOM STYLES HERE--}} @stop @section('content')
{{--content--}}
@if(auth()->user()->role_id == 1)
 
Select Company:

@endif
@if(!empty($contact_data) && count($contact_data) > 0)

Contact Submission Per Month

@if(!empty($contact_data)) @if(count($contact_data) > 0) @php $ctr = 0; @endphp @foreach($contact_data as $k => $contact) @php $ctr += 1; $info = (array) $contact->data; @endphp
@foreach($info as $key => $data) @if(!empty($data)) @endif @endforeach

Form Contents

{{ str_replace('_', ' ', ucfirst($key)) }} {{ $data }}
@endforeach @else
No data found.
@endif @else
No data found.
@endif
@else @include('no_data', [ 'nd_title' => 'No Available Data', 'nd_subtitle' => 'Please contact our team for further assistance.' ]) @endif
@stop @section('page_modals') @include('template.footer_scripts') @stop @section('page_scripts') {{-- --}} @stop