@extends('layouts.csd.app') @section('content')
@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg))

{{ Session::get('alert-' . $msg) }}

@endif @endforeach @if(count($paginatedData) > 0)
@php $i=0; @endphp @foreach($paginatedData as $key => $data) @if($data->spam == 1) @continue @endif @php $i++; @endphp @php $conversionCount = App\Http\Helper::bulkconversionCount(strtolower($data->sitename), $data->id); @endphp @endforeach
Site Name Ticket Id Date
{{ $data->sitename }} {{ $data->name }} @if(count($conversionCount) > 1) {{count($conversionCount)}} @endif {{ $data->email }}-{{ $data->mobile }} {{ $data->ticket_id }} {{ date('M j', strtotime($data->created_at)) }} @if($data->view_status == 1) @endif
@else
No Data Found...
@endif
@if ($paginatedData->hasPages()) @endif
@endsection