@extends('layouts.list') @section('title') All Fathers @endsection @section('list-title') {{__('fathers.fathers')}} @endsection @section('list-navigation')
  • {{__('fathers.fathers')}}
  • @endsection @section('list-new-button') {{__('fathers.new_father')}} @endsection @section('list-table-header') # {{__('fathers.image')}} {{__('fathers.father')}} {{__('fathers.nationality')}} {{__('fathers.created_by')}} {{__('fathers.actions')}} @endsection @section('list-table-body') @foreach ($student_father_profiles as $student_father_profile)

    1

    @if ($student_father_profile->father_image !== null&& $student_father_profile->father_image !== '') {{ $student_father_profile->father_name }} @else

    {{ $student_father_profile->father_name[0] }}

    @endif
    {{__('fathers.full_name')}}

    {{ $student_father_profile->father_name }}

    {{__('fathers.email_address')}}

    {{ $student_father_profile->father_email }}

    {{__('fathers.mobile_number')}}

    {{ $student_father_profile->father_phone }}

    {{__('fathers.nationality')}}

    {{ $student_father_profile->father_nationality }}

    {{__('fathers.created_by')}}

    {{ $student_father_profile->createdPerson->full_name }}

    @endforeach @endsection @section('list-table-inside-pagination') {{--
    {!! $student_father_profiles->links() !!}
    --}} @endsection @section('list-pagination') {{-- {{ $student_father_profiles->links() }} --}} @endsection