@extends('layouts/eims_layout') @section('title', '| ' . $pageTitle) @section('content') @include('successMsg')
{{ $pageTitle }}
{{Form::open(['url' => '/','id' => 'studentAttendanceForm', 'autocomplete' => 'off'])}} {{Form::hidden('student_id', $student->id)}}
{{-- Student Id No --}}
Student Id No
{{$student->student_id_no}}
{{--Student Name--}}
Student Name
{{$student->name}}
{{-- Medium/Version --}}
{{$programMediumLabel}}
{{$student?->eims_program?->name}}
{{-- {{ $companyType === 'UNV' ? 'Semester' : 'Class' }}--}}
{{$semesterClassLabel}}
{{$student?->eims_semester_class?->name}}
{{-- Shift --}}
Shift
{{$student?->eims_shift?->name}}
{{-- Section --}}
Section
{{$student?->eims_section?->name}}
{{-- Session --}}
Session
{{$student?->eims_session?->name}}
@if($companyType != 'UNV') {{-- Semester Group --}}
Class Group
{{$student?->eims_semester_class_group?->name}}
@endif {{-- roll --}}
Roll No
{{$student->roll_no}}
{{-- monthwise or weekwise --}}
{{Form::label('attendance_type', 'Attendance Type', ['class' => 'col-md-3 form-control-label'])}}
{{ Form::select('attendance_type', [ '' => 'Select Attendance Type', 'weekwise' => 'Week wise', 'monthwise' => 'Month wise' ], null, ['class' => 'form-control', 'id' => "attendance_type"]) }}
{{-- select either year-mm or select year--week --}}
{{Form::label('attendance_selector', '', ['class' => 'col-md-3 form-control-label'])}}
{{ Form::text('attendance_selector', null, ['class' => 'form-control', 'id' => "attendance_selector"]) }}
{{Form::close()}}
@endsection