@extends('layout') @section('contents')

Contacts

New Contact Send Message for New Contacts
@foreach($stats as $ky=>$row)
{{$row['label']}}

{{$row['val']}}

@endforeach
@foreach($data as $row) @endforeach
Sr # Salutation Name Mobile Number Status Created On Message Sent on Attending?
{{$ctr}} {{$row['salutation']}} {{$row['name']}} {{$row['country']}}{{$row['phone']}} {{$row['status']}} {{date('d/m/Y', strtotime($row['created_at']))}} @if($row['status'] == "Sent") {{ date('d/m/Y', strtotime($row['created_at']))}} @endif @if($row['attending'] == 10) Attending @endif @if($row['attending'] == 20) Not Attending @endif @if($row['attending'] == 0 && $row['status'] == "Sent") Not Confirmed @endif
@endsection