@extends('layouts.instructor') @section('breadcrumb')

{{__('All Students')}}

@endsection @section('content')
{{__('All Students')}}
@if(count($enrollments) > 0)
@foreach($enrollments as $enrollment) @endforeach
{{__('Image')}} {{__('Name')}} {{__('Email')}} {{__('Course Name')}} {{__('Enroll Date')}} {{__('Action')}}
img
{{ @$enrollment->user->name }} {{ @$enrollment->user->email }} {{ @$enrollment->course->title }} {{ $enrollment->start_date }}
@if(@$enrollments->hasPages()) {{ @$enrollments->links('frontend.paginate.paginate') }} @endif @else
img
{{__('Empty Student')}}
@endif
@endsection @section('modal') @endsection @push('script') @endpush