@extends('layouts.admin.admin') @section('title', 'New Project') @section('page-specific-styles') @endsection @section('content')

Highlights

Latest social statistics
Total Leads
100
Total Follow Ups
65/100
Leads Sources
5
Our Campaigns
@foreach ($campaigns as $key => $campaign) @endforeach
Title visitors
{{ Str::limit($campaign->name, 47) }}
{{ $campaign->registrations->count() }}

Campaign Visitors

1K
Leads Stats
@foreach ($registrations as $key => $registration) @endforeach
S.No. Student Name Email Phone No. status due date
{{ ++$key }}
{{ Str::limit($registration->email, 47) }}
{{ Str::limit($registration->phone, 47) }} In progress 07 Sep 2022
Follow Up List Stats
@foreach ($followups as $followup) @if ($followup->follow_up_type == 'registration' && !empty($followup->registration($followup->id))) @endif @endforeach
Student Name Email Phone No. Follow Up By Follow Up Date Remarks date
{{ $followup->registration($followup->id)->email }}
{{ $followup->registration($followup->id)->phone }} {{ $followup->follow_up_by }} {{ $followup->next_schedule }} {{ $followup->remarks }}
@endsection @section('page-specific-scripts') @endsection