@extends('layouts.app') @section('title', 'All Mentorship Activities') @section('content')

Mentorship Activities

Export All CSV
@forelse($activities as $index => $activity) @empty @endforelse
# Mentor Trainee Session Date Session # Total Payable (KSH) Actions
{{ $activities->firstItem() + $index }} {{ $activity->mentor->name ?? '-' }} {{ $activity->trainee->name ?? '-' }} {{ $activity->date?->format('d-m-Y') ?? '-' }} {{ $activity->session_number }} {{ number_format($activity->payments->sum('total_payable') ?? 0, 2) }} PDF
No mentorship activities found.
{{ $activities->links() }}
@endsection