@extends('layouts.view') @section('title') View Father @endsection @section('view-title') View Father - {{ $student_father_profile->father_name }} @endsection @section('view-navigation')
  • List Fathers
  • View Father
  • @endsection @section('view-panel')
    @if ($student_father_profile->father_image !== null) {{ $student_father_profile->father_name }} @else {{ ucfirst($student_father_profile->father_name[0]) }} @endif

    {{ $student_father_profile->father_name }}

    @endsection @section('view-tabs') {{-- Father Info --}}
    Father Info
    Father Name {{ $student_father_profile->father_name }}
    Email Address {{ $student_father_profile->father_email }}
    Mobile Number {{ $student_father_profile->father_phone }}
    Alternative Mobile Number {{ $student_father_profile->father_alternative_phone }}
    Date of Birth {{ $student_father_profile->father_dob }}
    Nationality {{ $student_father_profile->father_nationality }}
    National Number {{ $student_father_profile->father_national_number }}
    Marital Status {{ $student_father_profile->father_marital_status }}
    Created By {{ $student_father_profile->createdPerson->full_name }}
    Created Date {{ $student_father_profile->created_at }}
    {{-- Father Address --}}
    Father Address
    Address {{ $student_father_profile->father_address }}
    City {{ $student_father_profile->father_city }}
    State {{ $student_father_profile->father_state }}
    Country {{ $student_father_profile->father_country }}
    Landmark {{ $student_father_profile->father_landmark }}
    {{-- Father Social Media --}}
    Father Social Media
    {{-- Send Email --}} {{-- Send Whatsapp to Father --}}
    Send Whatsapp to Father

    {{-- Father Other Info --}}
    Father Other Info
    Father Degree Of Kinship {{ $student_father_profile->father_degree_of_kinship }}
    Father Job {{ $student_father_profile->father_job }}
    Father Qualification {{ $student_father_profile->father_qualification }}
    Father Qualification Other {{ $student_father_profile->father_qualification_other }}
    Father Wedding Date {{ $student_father_profile->father_wedding_date }}
    Father Interests {{ $student_father_profile->father_interests }}
    Father Age At Student Birth {{ $student_father_profile->father_age_at_student_birth }}
    Father Relation With Child {{ $student_father_profile->father_relation_with_child }}
    Father Attitudes Towards Parent {{ $student_father_profile->father_attitudes_towards_parent }}
    {{-- Father His Children Data --}}
    Father Children Data
    @foreach ($students as $student) @endforeach
    Student Image Student Name Student Phone Student Gender Student DOB Actions
    @if ($student->image !== null) {{ $student->student_name }} @else No Student Image @endif

    {{ $student->student_name }}

    {{ $student->phone }}

    {{ $student->gender }}

    {{ $student->dob }}

    @endsection