@extends('layouts.teacher') {{ config('app.name', 'Laravel') }} | Teacher | Student Activity Tracker @section('main-content')
@if (Session::has('success')) @endif

Student Activity Tracker

Add Activity
Max Description: 2000 characters
Save Description
{{--
  • John

--}}
@if (isset($studentlist) && count($studentlist) != 0 && !empty($studentlist)) @for ($i = 0; $i < count($studentlist); $i += 4) @for ($j = $i; $j < $i + 4; $j++) @if ($j < count($studentlist)) @else @endif @endfor @endfor @else @endif
id Column 1 Column 2 Column 3 Column 4
{{ $i }}
Card image cap

{{ strtoupper($studentlist[$j]->first_name) . ' ' . strtoupper($studentlist[$j]->last_name) }}

  • Gender: {{ ucwords($studentlist[$j]->gender) }}
  • DOB: {{ dateformatter($studentlist[$j]->dob) }}
  • Age: {{ calculateAge($studentlist[$j]->dob) }}
  • View
Not a student mapped currently.
Please wait !!! Trying to upload your requested images.
@endsection