@extends('layouts.admin') @push('title', get_phrase('Course enrollment')) @push('meta')@endpush @push('css')@endpush @section('content') @php $course = App\Models\Course::where('status', 'active')->orWhere('status', 'private')->orderBy('title', 'asc')->get(); $students = App\Models\User::where('role', 'student')->orderBy('name', 'asc')->get(); @endphp

{{ get_phrase('Enroll Students') }}

{{get_phrase('Enroll students')}}

@csrf
@endsection