@extends('layouts.applicant.app') @section('content')
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('success')) @endif @if(auth()->user()->unit == 'A') @php $applicant = App\ScienceApplicant::where('applicant_id', auth()->user()->applicant_id)->first(); $url = 'profile_pictures/'.$applicant->admission_roll.'.jpg'; @endphp
{{asset('user_avatar.png')}}
@csrf

{{auth()->user()->name}}

GST Unit: A

Applicant ID: {{$applicant->applicant_id}}

{{--

--}} {{-- Email: {{auth()->user()->email}}

--}}

Father Name: {{$applicant->father_name}}

Mobile Number: 0{{auth()->user()->mobile}}

SSC GPA: {{$applicant->ssc_gpa}}

HSC GPA: {{$applicant->hsc_gpa}}

Total Marks: {{$applicant->total}}

English: {{$applicant->eng}}

Bangla: {{$applicant->ban}}

Physics: {{$applicant->phy}}

Chemistry: {{$applicant->che}}

@if(str_contains($applicant->set_code, 'MB'))

Mathematics: {{$applicant->mat}}

Biology: {{$applicant->bio}}

@elseif(str_contains($applicant->set_code, 'MI'))

Mathematics: {{$applicant->mat}}

ICT: {{$applicant->ict}}

@elseif(str_contains($applicant->set_code, 'BI'))

Biology: {{$applicant->bio}}

ICT: {{$applicant->ict}}

@endif
@elseif(auth()->user()->unit == 'B') @php $applicant = App\ArtsApplicant::where('applicant_id', auth()->user()->applicant_id)->first(); $url = 'profile_pictures/'.$applicant->admission_roll.'.jpg'; @endphp
{{asset('user_avatar.png')}}
@csrf

{{auth()->user()->name}}

GST Unit: B

Applicant ID: {{$applicant->applicant_id}}

Father Name: {{$applicant->father_name}}

Mobile Number: 0{{auth()->user()->mobile}}

SSC GPA: {{$applicant->ssc_gpa}}

HSC GPA: {{$applicant->hsc_gpa}}

Total Marks: {{$applicant->total}}

English: {{$applicant->eng}}

Bangla: {{$applicant->ban}}

ICT: {{$applicant->ict}}

@elseif(auth()->user()->unit == 'C') @php $applicant = App\CommerceApplicant::where('applicant_id', auth()->user()->applicant_id)->first(); $url = 'profile_pictures/'.$applicant->admission_roll.'.jpg'; @endphp
{{asset('user_avatar.png')}}
@csrf

{{auth()->user()->name}}

GST Unit: C

Applicant ID: {{$applicant->applicant_id}}

{{--

--}} {{-- Email: {{auth()->user()->email}}

--}}

Father Name: {{$applicant->father_name}}

Mobile Number: 0{{auth()->user()->mobile}}

SSC GPA: {{$applicant->ssc_gpa}}

HSC GPA: {{$applicant->hsc_gpa}}

GST Score: {{$applicant->total}}

English: {{$applicant->eng}}

Bangla: {{$applicant->ban}}

ICT: {{$applicant->ict}}

Accounting: {{$applicant->acc}}

BOM: {{$applicant->bom}}

@endif
{{--
--}} {{--
--}} {{--
--}} {{-- My Notifications--}} {{--
--}} {{--
--}} {{-- @if(count(Auth::user()->unreadNotifications) > 0)--}} {{-- @foreach(Auth::user()->unreadNotifications->sortByDesc('updated_at') as $notification)--}} {{-- --}} {{-- @endforeach--}} {{-- @else--}} {{-- --}} {{-- @endif--}} {{--
--}} {{--
--}} {{--
--}}

# ৩১ ডিসেম্বর ২০২১ তারিখ রাত ১১:৫৯ মিনিটের পর বিভাগ Choice Form আর কোন ভাবেই পরিবর্তন করা যাবে না।

# আগামী ০৫ জানুয়ারি ২০২২ তারিখ থেকে My Reports মেনুতে ভিজিট করে মেধা তালিকাসহ আপনার Choice Form টি Download করে সংরক্ষণ করুন।

# মোবাইল থেকে মেনুতে যেতে উপরের বাম পাশে থাকা Three Dot Icon এ ক্লিক করুন।


My Submissions - (Choice Form Submission আপডেট করতে My Submission মেনুতে ভিসিট করুন)

@if(count(auth()->user()->choices) > 0) @foreach(auth()->user()->choices as $choice)
Faculty of {{$choice->faculty}}
@php $departments = explode(";",$choice->list); $count = 1; @endphp @foreach($departments as $department) @if($department != null)

{{$count}} => {{$department}}

@endif @php $count++; @endphp @endforeach
Last Updated: {{$choice->updated_at}}
@endforeach @else
No submission till now!
@endif
@endsection @section('scripts') @endsection