@extends('layouts.admin') @section('content')

{{ __('All Students') }}

@foreach($students as $student) @endforeach
{{__('Image')}} {{__('Details')}} {{__('Country')}} {{__('Address')}} {{ __('Total Course Enroll') }} {{__('Status')}} {{__('Action')}}
{{__('Name')}}: {{$student->name}}
{{__('Email')}}: {{$student->user->email}}
{{__('Phone')}}: {{$student->phone_number ?? @$student->user->phone_number}}
{{$student->country ? $student->country->country_name : '' }} {{$student->address}} {{ studentCoursesCount($student->user_id) }}
eye edit
{{ method_field('DELETE') }}
{{$students->links()}}
@endsection @push('style') @endpush @push('script') @endpush