@extends('layouts.admin') @push('title', get_phrase('Student')) @push('meta') @endpush @push('css') @endpush @section('content')
{{ get_phrase('Showing') . ' ' . count($students) . ' ' . get_phrase('of') . ' ' . $students->total() . ' ' . get_phrase('data') }}
# | {{ get_phrase('Name') }} | {{ get_phrase('Phone') }} | {{ get_phrase('Enrolled Course') }} | {{ get_phrase('Options') }} |
---|---|---|---|---|
{{ ++$key }} |
{{ $row->name }}{{ $row->email }} |
{{ $row->phone }} |
{{ App\Models\Enrollment::where('user_id', $row->id)->count() }} {{ get_phrase('Courses') }} |
{{ get_phrase('Showing') . ' ' . count($students) . ' ' . get_phrase('of') . ' ' . $students->total() . ' ' . get_phrase('data') }}
{{ $students->links() }}