@extends('admin/layouts/app') @section('page-title') Followers | Simple Admission @endsection @section('page-breadcrumb')

Followers

@endsection @section('main-content')

{{ $followers->count() }} Students are Following your Institute and Activity

@foreach($followers as $key=>$follower) @endforeach
SL. Name Age Location
{{ $key + $followers->firstItem() }}
Logo
{{@$follower->student->name}}
@php // Get the date of birth $dob = @$follower->studentbasic->dob; // Calculate the current age $currentYear = date('Y'); $birthYear = date('Y', strtotime($dob)); $age = $currentYear - $birthYear; @endphp {{ $age }} {{ @$follower->studentbasic->present_address }}
{{ $followers->links() }} {{--
    --}} {{--
  • --}} {{-- --}} {{--
  • --}} {{-- @foreach(range(1, $followers->lastPage()) as $page)--}} {{--
  • --}} {{-- {{ $page }}--}} {{--
  • --}} {{-- @endforeach--}} {{--
  • --}} {{-- --}} {{--
  • --}} {{--
--}} {{--
    --}} {{-- --}} {{--
  • 1
  • --}} {{--
  • 2
  • --}} {{--
  • 3
  • --}} {{--
  • 4
  • --}} {{--
  • 5
  • --}} {{--
  • 6
  • --}} {{-- --}} {{--
--}}
@endsection @section('extra-css') @endsection @section('extra-script') @section('extra-sub-script') @show @endsection