@extends('layouts.admin') @section('content')
External Students @include('admin.errors.form-errors')

Add New External Student

@csrf
*Please download this template file in order to be able to upload the data properly
@csrf
*max allowed number of students are 500 per upload
*allowed format is csv only
*student email is unique per course
@lang('student.filter by')
{{-- --}}
@if ($request->query('acysid') > 0 && $request->query('course') > 0)
{{-- Export Excel --}} {{-- --}} Export Excell
@else @endif

External Students List

@php $count=0 @endphp @foreach ($external_students as $student ) @endforeach
Id name email course added by status
{{++$count}} {{$student->name}} {{$student->email}} {{$student->has_label ? ' ( '.$student->label.' ) ':''}} {{$student->acyname.'_' .$student->cname.' ( ' .$student->lshort_name.' ) '.'_' .$student->ttname }} {{{$student->added_by_fname.' '.$student->added_by_mname.' '.$student->added_by_lname}}} {{$student->is_active ? 'active':'inactive'}}
{{ $external_students->appends(Request::except('page'))->render('inc.paginate') }}

Displaying {{$external_students->count()}} of {{ $external_students->total() }} student(s).

@endsection @section('admin-js') {{-- draw all data tables --}} @endsection