Student Information
{{ $studentDetail->name }}
Class: {{ $studentDetail->class }}-{{ $studentDetail->sec }}
House: {{ $studentDetail->house }}
Date of Birth: {{ date('d-m-Y',strtotime($studentDetail->dob)) }}
Mobile Number: {{ $studentDetail->phn }}
Father Information
@php
$expiresAt = now()->addHours(24); // Expiration time (for example, 10 minutes)
$father_image = schoolRedisDetail()['code'].'/live-students/'.$studentDetail->admno.'FPic.jpg';
@endphp
{{ $studentDetail->fname }}
Email: {{ $studentDetail->f_email }}
Qualification: {{ $studentDetail->f_qua }}
Mobile Number: {{ $studentDetail->no1 }}
Adhaar Number: {{ $studentDetail->f_adhar }}
Mother Information
@php
$expiresAt = now()->addHours(24); // Expiration time (for example, 10 minutes)
$mother_image = schoolRedisDetail()['code'].'/live-students/'.$studentDetail->admno.'MPic.jpg';
@endphp
{{ $studentDetail->mname }}
Email: {{ $studentDetail->m_email }}
Qualification: {{ $studentDetail->m_qua }}
Mobile Number: {{ $studentDetail->no2 }}
Adhaar Number: {{ $studentDetail->m_adhar }}
Guardian Information
@php
$expiresAt = now()->addHours(24);
$guardian_image = schoolRedisDetail()['code'].'/live-students/'.$studentDetail->admno.'GPic.jpg';
@endphp
{{ $studentDetail->guardian_one }}
Email: {{ $studentDetail->email_guardian_one }}
Address: {{ $studentDetail->add_guardian_one }}
Mobile Number: {{ $studentDetail->mobile_guardian }}
Adhaar Number: {{ $studentDetail->ad_guardian }}
Student's Details
My Address
- Address: {{ $studentDetail->ad1 }}
- City: {{ $studentDetail->city }}
- Pin: {{ $studentDetail->pin }}
- State: {{ $studentDetail->state }}
- Country: {{ $studentDetail->country }}
- Aadhar No.: {{ $studentDetail->std_adhar }}
- Family ID.: {{ $studentDetail->srn }}
Student's Documents
@php
$expiresAt = now()->addHours(24); // Expiration time (for example, 10 minutes)
$imagePath = schoolRedisDetail()['code'].'/live-students/'.$studentDetail->admno.'ad.jpg';
@endphp
@php
$dob_certificate = schoolRedisDetail()['code'].'/live-students/'.$studentDetail->admno.'dob.jpg';
@endphp
@php
$pass_book = schoolRedisDetail()['code'].'/live-students/'.$studentDetail->admno.'pass.jpg';
@endphp
@php
$pb_certificate = schoolRedisDetail()['code'].'/live-students/'.$studentDetail->admno.'pb.jpg';
@endphp
@php
$school_living_certificate = schoolRedisDetail()['code'].'/live-students/'.$studentDetail->admno.'slc.jpg';
@endphp
->exists($imagePath) ? Storage::disk('s3')->temporaryUrl($imagePath, $expiresAt) : asset('students/images/no-image.jpg')}})
->exists($dob_certificate) ? Storage::disk('s3')->temporaryUrl($dob_certificate, $expiresAt) : asset('students/images/no-image.jpg')}})
->exists($pass_book) ? Storage::disk('s3')->temporaryUrl($pass_book, $expiresAt) : asset('students/images/no-image.jpg')}})
->exists($mark_sheet) ? Storage::disk('s3')->temporaryUrl($mark_sheet, $expiresAt) : asset('students/images/no-image.jpg')}})