@extends('layouts.student.layout') @section('content')

Dashboard

{{ $dashboard['presentPercentage'] }}%

Attendance

{{ $dashboard['upcomingeventCount'] }}

Upcoming Events

Attendance

Present

{{ $dashboard['presentDay'] }} Days

Absent

{{ $dashboard['absentDay'] }} Days

Notice Board

@if(count($dashboard['noticeboard']) > 0) @foreach($dashboard['noticeboard'] as $noticeboard)

{{ $noticeboard->title }}

{{ date('d M Y',strtotime($noticeboard->publish_date)) }}

@if($noticeboard->type == 'class') {{ $noticeboard->standardLink->StandardSection }} @else {{ ucwords($noticeboard->type) }} @endif

{!! $noticeboard->description !!}

{{ $noticeboard->created_at->diffForHumans() }}

@if($noticeboard->attachment_file != '') @endif
@endforeach @else

No Notice Found

@endif

{{ Auth::user()->FullName }}

{{ Auth::user()->studentAcademicLatest->roll_number }}

{{ Auth::user()->userprofile->address }}

  • Name

    {{ Auth::user()->userprofile->firstname }}

  • Gender

    {{ ucwords(Auth::user()->userprofile->gender) }}

  • D.O.B

    {{ date('d M Y',strtotime(Auth::user()->userprofile->date_of_birth)) }}

  • Class

    {{ Auth::user()->studentAcademicLatest->standardLink->StandardSection }}

  • Admission Date

    {{--

    {{ date('d M Y',strtotime(Auth::user()->userprofile->joining_date)) }}

    --}}

    {{ Auth::user()->userprofile->joining_date ? date('d M Y', strtotime(Auth::user()->userprofile->joining_date)) : '' }}

  • Phone

    @if(Auth::user()->mobile_no == '')

    --

    @else

    +91 {{ Auth::user()->mobile_no }}

    @endif
  • Email

    @if(Auth::user()->email == '')

    --

    @else

    {{ Auth::user()->email }}

    @endif
@if(config('gexam.enabled', false))

Exam Results

@endif
@endsection @push('scripts') @endpush