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

{{$student->name}}

{{__('app.personal_information')}}

{{$student->about_me}}

  • {{__('app.name')}}:

    {{$student->name}}

  • {{__('app.phone')}}:

    {{$student->phone_number}}

  • {{__('app.email')}}:

    {{$student->user ? $student->user->email : '' }}

  • Address:

    {{$student->address}}

  • Location:

    {{$student->city ? $student->city->name.', ' : ''}} {{$student->state ? $student->state->name.', ' : ''}} {{$student->country ? $student->country->country_name : ''}}

icon

{{ studentCoursesCount($student->user_id) }}

Total Enrolled Courses

{{__('app.enrolled_courses')}}

@foreach($orderItems as $orderItem) @endforeach
{{__('app.image')}} {{__('app.title')}}
course {{ @$orderItem->course->title }}
{{@$orderItems->links()}}
@endsection