@extends('backEnd.master') @push('css') @endpush @section('title') @lang('student.student_details') @endsection @section('mainContent') @php function showTimelineDocName($data) { $name = explode('/', $data); $number = count($name); return $name[$number - 1]; } function showDocumentName($data) { $name = explode('/', $data); $number = count($name); return $name[$number - 1]; } @endphp @php $setting = app('school_info'); if (!empty($setting->currency_symbol)) { $currency = $setting->currency_symbol; } else { $currency = '$'; } @endphp
@if (moduleStatusCheck('University')) @includeIf('university::promote.inc.student_profile', [ 'student_detail' => $student_detail->defaultClass, 'student' => $student_detail, ]) @else @includeIf('backEnd.studentInformation.inc.student_profile') @endif
@php $type = isset($type) ? $type : null; @endphp
@include('backEnd.studentInformation.inc._profile_tab') @include('backEnd.studentInformation.inc._fees_tab') @include('backEnd.studentInformation.inc._leave_tab') @include('backEnd.studentInformation.inc._exam_tab') @if (moduleStatusCheck('University'))
@includeIf('university::exam.partials._examTabView')
@endif @include('backEnd.studentInformation.inc._document_tab')
@if (userPermission(1201)) @endif
@if (moduleStatusCheck('University')) @else @endif @if ($setting->multiple_roll == 1) @endif @foreach ($records->where('active_status', 1) as $record) @if (moduleStatusCheck('University')) @else @endif @if ($setting->multiple_roll == 1) @endif {{-- Record delete --}} {{-- edit record --}} @endforeach {{-- end edit record --}}
@lang('university::un.session') @lang('university::un.faculty_department') @lang('university::un.semester(label)')@lang('common.class') @lang('common.section')@lang('student.id_number')@lang('student.action')
{{ $record->unSession->name }} {{ $record->unFaculty->name . '(' . $record->unDepartment->name . ')' }} @if ($record->is_default) {{ __('common.default') }} @endif {{ $record->unSemester->name . '(' . $record->unSemesterLabel->name . ')' }} {{ $record->class->class_name }} @if ($record->is_default) {{ __('common.default') }} @endif {{ $record->section->section_name }} {{ $record->roll_no }} @if ($record->is_promote == 0) @endif
@foreach ($timelines as $timeline)

{{ $timeline->date != '' ? dateConvert($timeline->date) : '' }}

10.30 pm
{{ $timeline->title }}

{{ $timeline->description }}

@if (file_exists($timeline->file)) @lang('common.download') @endif
@endforeach
@include('backEnd.studentInformation.inc._student_attendance_tab') @include('backEnd.studentInformation.inc._subject_attendance_tab') @if (moduleStatusCheck('BehaviourRecords')) @include('backEnd.studentInformation.inc._student_behaviour_record_tab') @endif {{-- start marksheet tab --}} @if (generalSetting()->result_type == 'mark')
@foreach ($records as $record) @includeIf('backend.studentInformation.inc.finalMarkSheet') @endforeach
@endif @if (moduleStatusCheck('University'))
@include('backEnd.studentInformation.inc.subject_list')
@endif {{-- end marksheet tab --}}
@include('backEnd.partials.data_table_js') @include('backEnd.partials.date_picker_css_js') @endsection