@extends('backEnd.master') @section('title') @lang('student.my_profile') @endsection @section('mainContent') @push('css') @if (moduleStatusCheck('University')) @endif @endpush @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, 'setting' => null, 'student' => $student_detail, ]) @else @includeIf('backEnd.studentInformation.inc.student_profile') @endif

@lang('student.personal_info')

@if (is_show('admission_date'))
@lang('student.admission_date')
{{ @$student_detail->admission_date != '' ? dateConvert(@$student_detail->admission_date) : '' }}
@endif @if (is_show('date_of_birth'))
@lang('common.date_of_birth')
{{ @$student_detail->date_of_birth != '' ? dateConvert(@$student_detail->date_of_birth) : '' }}
@endif @if (is_show('student_category_id'))
@lang('common.type')
{{ @$student_detail->category != '' ? @$student_detail->category->category_name : '' }}
@endif @if (is_show('religion'))
@lang('student.religion')
{{ @$student_detail->religion != '' ? @$student_detail->religion->base_setup_name : '' }}
@endif @if (is_show('phone_number'))
@lang('common.phone_number')
{{ @$student_detail->mobile }}
@endif @if (is_show('email_address'))
@lang('common.email_address')
{{ @$student_detail->email }}
@endif {{-- changes for lead module --abunayem --}} @if (moduleStatusCheck('Lead') == true)
@lang('lead::lead.city')
{{ @$student_detail->leadCity->city_name }}
@lang('lead::lead.source')
{{ @$student_detail->source->source_name }}
@endif {{-- end --}} @if (is_show('current_address'))
@lang('student.present_address')
{{ @$student_detail->current_address }}
@endif @if (is_show('permanent_address'))
@lang('student.permanent_address')
{{ @$student_detail->permanent_address }}
@endif

@lang('student.parent_/_guardian_details')

@if (is_show('fathers_photo'))
@endif
@if (is_show('fathers_name'))
@lang('student.father_name')
{{ @$student_detail->parents != '' ? @$student_detail->parents->fathers_name : '' }}
@endif @if (is_show('fathers_occupation'))
@lang('student.occupation')
{{ @$student_detail->parents != '' ? @$student_detail->parents->fathers_occupation : '' }}
@endif @if (is_show('fathers_phone'))
@lang('common.phone_number')
{{ @$student_detail->parents != '' ? @$student_detail->parents->fathers_mobile : '' }}
@endif
@if (is_show('mothers_photo'))
@endif
@lang('student.mother_name')
@if (is_show('mothers_name'))
{{ @$student_detail->parents != '' ? @$student_detail->parents->mothers_name : '' }}
@endif
@lang('student.occupation')
@if (is_show('mothers_occupation'))
{{ @$student_detail->parents != '' ? @$student_detail->parents->mothers_occupation : '' }}
@endif
@if (is_show('mothers_phone'))
@lang('common.phone_number')
{{ @$student_detail->parents != '' ? @$student_detail->parents->mothers_mobile : '' }}
@endif
@if (is_show('guardians_photo'))
@endif
@if (is_show('guardians_name'))
@lang('student.guardian_name')
{{ @$student_detail->parents != '' ? @$student_detail->parents->guardians_name : '' }}
@endif @if (is_show('guardians_email'))
@lang('common.email_address')
{{ @$student_detail->parents != '' ? @$student_detail->parents->guardians_email : '' }}
@endif @if (is_show('guardians_phone'))
@lang('common.phone_number')
{{ @$student_detail->parents != '' ? @$student_detail->parents->guardians_mobile : '' }}
@endif
@lang('student.relation_with_guardian')
{{ @$student_detail->parents != '' ? @$student_detail->parents->guardians_relation : '' }}
@if (is_show('guardians_occupation'))
@lang('student.occupation')
{{ @$student_detail->parents != '' ? @$student_detail->parents->guardians_occupation : '' }}
@endif @if (is_show('guardians_address'))
@lang('student.guardian_address')
{{ @$student_detail->parents != '' ? @$student_detail->parents->guardians_address : '' }}
@endif

@lang('student.transport_and_dormitory_details')

@if (is_show('route'))
@lang('common.route')
{{ @$student_detail->route != '' ? @$student_detail->route->title : '' }}
@endif @if (is_show('vehicle'))
@lang('transport.vehicle_number')
{{ @$student_detail->vehicle != '' ? @$student_detail->vehicle->vehicle_no : '' }}
@endif
@lang('transport.driver_name')
{{ @$student_detail->vehicle != '' ? @$driver->full_name : '' }}
@lang('transport.driver_phone_number')
{{ @$student_detail->vehicle != '' ? @$driver->mobile : '' }}
@if (is_show('dormitory_name'))
@lang('dormitory.dormitory_name')
{{ @$student_detail->dormitory != '' ? @$student_detail->dormitory->dormitory_name : '' }}
@endif

@lang('student.information_other')

@if (is_show('blood_group'))
@lang('student.blood_group')
{{ @$student_detail->bloodGroup != '' ? @$student_detail->bloodGroup->base_setup_name : '' }}
@endif @if (is_show('height'))
@lang('student.height')
{{ isset($student_detail->height) ? @$student_detail->height : '' }}
@endif @if (is_show('weight'))
@lang('student.weight')
{{ isset($student_detail->weight) ? @$student_detail->weight : '' }}
@endif @if (is_show('previous_school_details'))
@lang('student.previous_school_details')
{{ isset($student_detail->previous_school_details) ? @$student_detail->previous_school_details : '' }}
@endif @if (is_show('national_id_number'))
@lang('student.national_identification_number')
{{ isset($student_detail->national_id_no) ? @$student_detail->national_id_no : '' }}
@endif @if (is_show('local_id_number'))
@lang('student.local_identification_number')
{{ isset($student_detail->local_id_no) ? @$student_detail->local_id_no : '' }}
@endif @if (is_show('bank_account_number'))
@lang('accounts.bank_account_number')
{{ isset($student_detail->bank_account_no) ? @$student_detail->bank_account_no : '' }}
@endif @if (is_show('bank_name'))
@lang('accounts.bank_name')
{{ isset($student_detail->bank_name) ? @$student_detail->bank_name : '' }}
@endif @if (is_show('ifsc_code'))
@lang('student.ifsc_code')
{{ isset($student_detail->ifsc_code) ? @$student_detail->ifsc_code : '' }}
@endif @if (is_show('custom_field')) {{-- Custom field start --}} @include('backEnd.customField._coutom_field_show') {{-- Custom field end --}} @endif
@foreach ($records as $record) @endforeach
{{-- @php $diff = ''; @endphp @if (count($leave_details) > 0) --}} @foreach ($leave_details as $value) @endforeach {{-- @else @endif --}}
@lang('leave.leave_type') @lang('leave.leave_from') @lang('leave.leave_to') @lang('leave.apply_date') @lang('common.status') @lang('common.action')
{{ @$value->leaveType->type }} {{ $value->leave_from != '' ? dateConvert($value->leave_from) : '' }} {{ $value->leave_to != '' ? dateConvert($value->leave_to) : '' }} {{ $value->apply_date != '' ? dateConvert($value->apply_date) : '' }} @if ($value->approve_status == 'P') @endif @if ($value->approve_status == 'A') @endif @if ($value->approve_status == 'C') @endif
@lang('leave.not_leaves_data')
@if (moduleStatusCheck('University')) {{-- @includeIf('university::exam.partials._exam_report') --}} @includeIf('university::exam.student_exam_tab') @else @foreach ($student_detail->studentRecords as $record) @php $today = date('Y-m-d H:i:s'); $exam_count = count($exam_terms); @endphp @if ($exam_count < 1) @endif @endforeach @endif
@if (moduleStatusCheck('University'))
@includeIf('university::exam.partials._examTabView')
@endif
@php $exam_count = count($exam_terms); @endphp
@if (userPermission('student_upload_document')) @endif
@if (is_show('document_file_1')) @if ($student_detail->document_file_1 != '') @endif @endif @if (is_show('document_file_2')) @if ($student_detail->document_file_2 != '') @endif @endif @if (is_show('document_file_3')) @if ($student_detail->document_file_3 != '') @endif @endif @if (is_show('document_file_4')) @if ($student_detail->document_file_4 != '') @endif @endif @foreach ($student_detail->studentDocument as $document) @endforeach
@lang('student.title') @lang('student.name') @lang('student.action')
{{ $student_detail->document_title_1 }} {{ showDocument(@$student_detail->document_file_1) }} @if (file_exists($student_detail->document_file_1)) @lang('common.download') @endif
{{ $student_detail->document_title_2 }} {{ showDocument(@$student_detail->document_file_2) }} @if (file_exists($student_detail->document_file_2)) @lang('common.download') @endif
{{ $student_detail->document_title_3 }} {{ showDocument(@$student_detail->document_file_3) }} @if (file_exists($student_detail->document_file_3)) @lang('common.download') @endif
{{ $student_detail->document_title_4 }} {{ showDocument(@$student_detail->document_file_4) }} @if (file_exists($student_detail->document_file_4)) @lang('common.download') @endif
{{ $document->title }} {{ showDocument($document->file) }} @if (file_exists($document->file)) @lang('common.download') @endif
@if (moduleStatusCheck('University'))
@if ($canChoose == true) @include('backEnd.studentPanel.request_to_subject') @else {{ __('university::un.sorry_time_out') }} @endif
@endif
@if (moduleStatusCheck('University')) @else @endif @foreach ($student_detail->studentRecords as $record) @if (moduleStatusCheck('University')) @else @endif @endforeach
@lang('university::un.session') @lang('university::un.faculty_department') @lang('university::un.semester(label)')@lang('common.class') @lang('common.section')@lang('student.id_number')
{{ $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 }}
@include('backEnd.studentPanel.inc._student_attendance_tab') @include('backEnd.studentPanel.inc._subject_attendance_tab') @if (moduleStatusCheck('BehaviourRecords')) @include('backEnd.studentInformation.inc._student_behaviour_record_tab') @endif @if (moduleStatusCheck('Wallet'))
@include('wallet::_addWallet')
@endif
{{-- @include('backEnd.partials.data_table_js') --}} @include('backEnd.partials.date_picker_css_js') @endsection