{{-- ================= TOP TABS ================= --}}
@include('livewire.admin.partials.tab')
{{-- ================= FILTER SECTION ================= --}}
{{-- Start Date --}}
{{-- End Date --}}
{{-- Category --}}
{{-- Order By --}}
{{-- Buttons --}}
@if(($role_id == 1) || in_array(105, $permissions)) @endif
{{-- ================= WEEK FILTER BUTTONS ================= --}}
@foreach($weeks as $week) @endforeach
{{-- ================= SOURCE DATA TABLE ================= --}}
@if($source_data && $source_data->count())
@foreach($source_data as $row) @endforeach
Date Source Category Active Users Sessions Engaged Sessions
{{ $startDate }} - {{ $endDate }} {{ $row->sessionSource }} {{ optional($row->sourcecategory)->name }} {{ $row->total_users }} {{ $row->total_sessions }} {{ $row->total_engagedSessions }}
{{ $source_data->links() }}
@else
No records found.
@endif