@extends('layouts.list') @section('title') All Mothers @endsection @section('list-title') {{__('mothers.mother')}} @endsection @section('list-navigation')
  • {{__('mothers.mother')}}
  • @endsection @section('list-new-button') {{__('mothers.new_mother')}} @endsection @section('list-table-header') # {{__('mothers.image')}} {{__('mothers.mother')}} {{__('mothers.nationality')}} {{__('mothers.created_by')}} {{__('mothers.actions')}} @endsection @section('list-table-body') @foreach ($student_mother_profiles as $student_mother_profile)

    1

    @if ($student_mother_profile->mother_image !== null&& $student_mother_profile->mother_image !== '') {{ $student_mother_profile->mother_name }} @else

    {{ $student_mother_profile->mother_name[0] }}

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

    {{ $student_mother_profile->mother_name }}

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

    {{ $student_mother_profile->mother_email }}

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

    {{ $student_mother_profile->mother_phone }}

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

    {{ $student_mother_profile->mother_nationality }}

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

    {{ $student_mother_profile->createdPerson->full_name }}

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