@extends('layouts.app') @section('title', 'CTA Insights') @section('page-title', 'CTA Insights') @section('breadcrumb', 'Insights / Marketing / CTA') @section('content')
@if($records->count())
@foreach($records as $row) @endforeach
CTA NamePage / LocationClicks ViewsConversion RateLast Clicked
{{ $row->source ?? 'Direct' }} {{ $row->course?->title ?? 'Homepage' }} 1 1 {{ $row->status === 'converted' ? '100%' : '0%' }} {{ $row->updated_at->format('M d, Y') }}
{{ $records->links() }}
@else @endif
@endsection