@extends('layouts.admin') @section('styles') @stop @section('content')
Edit {{ trans('cruds.course.title_singular') }}
@method('PUT') @csrf

1. General Information

@if ($errors->has('course_code'))
{{ $errors->first('course_code') }}
@endif {{ trans('cruds.course.fields.course_code_helper') }}
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif {{ trans('cruds.course.fields.title_helper') }}
@if ($errors->has('type_course'))
{{ $errors->first('type_course') }}
@endif {{ trans('cruds.course.fields.type_course_helper') }}
@if ($errors->has('course_duration'))
{{ $errors->first('course_duration') }}
@endif {{ trans('cruds.course.fields.course_duration_helper') }}
@if ($errors->has('field_visit'))
{{ $errors->first('field_visit') }}
@endif {{ trans('cruds.course.fields.field_visit_helper') }}
@if ($errors->has('course_start'))
{{ $errors->first('course_start') }}
@endif {{ trans('cruds.course.fields.course_start_helper') }}
@if ($errors->has('course_end'))
{{ $errors->first('course_end') }}
@endif {{ trans('cruds.course.fields.course_end_helper') }}
@if ($errors->has('requiring_body'))
{{ $errors->first('requiring_body') }}
@endif {{ trans('cruds.course.fields.requiring_body_helper') }}
{{--
@if ($errors->has('nomination'))
{{ $errors->first('nomination') }}
@endif {{ trans('cruds.course.fields.nomination_helper') }}
--}}
{{--

3. Information regarding Trainers/Resource Persons

--}} {{--
@if ($course->possible_trainers) @foreach ($course->possible_trainers as $possible_trainer) @endforeach @endif
Names of the Trainers/Resource Persons No. of classes he has taken in 12 months Average No. Scored Adverse Comments (If any) Action
@php $user= app\Models\User::find($possible_trainer); @endphp {{$user->name}} 5 তথ্য অনুপস্থিত তথ্য অনুপস্থিত {{ trans('global.delete') }}
--}}

2. Course Content/Curriculum

2. Tentative Budget

@foreach ($course_budgets as $budget) @endforeach
Description of Activities Unit Qty Unit Cost Total Cost (BDT) Action
{{ $budget['budget']->name ?? $budget->budget_name }}
Add new budget
Total:
{{ $course->total_budget }}
Tax:
Total (including VAT & AIT):
{{ $course->total_budget_inc_vat }}

3. Information Regarding Course Management

(A)Principal Advisor

@if ($course->course_principal_advisor) @foreach ($course->course_principal_advisor as $course_principal_advisor) @endforeach @endif
Principal Advisor No. of Courses conducted by him in last 12 months Average marks secured Adverse Comments (If any) Action
@php $user = app\Models\User::find($course_principal_advisor); @endphp {{ $user->name }} 5 তথ্য অনুপস্থিত তথ্য অনুপস্থিত {{ trans('global.delete') }}

(B)Course Advisor

@if ($course->course_advisor) @foreach ($course->course_advisor as $course_advisor) @endforeach @endif
Course Advisor No. of Courses conducted by him in last 12 months Average marks secured Adverse Comments (If any) Action
@php $user = app\Models\User::find($course_advisor); @endphp {{ $user->name }} 5 তথ্য অনুপস্থিত তথ্য অনুপস্থিত {{ trans('global.delete') }}

(C)Course Director

@if ($course->course_director) @foreach ($course->course_director as $course_director) @endforeach @endif
Course Director No. of Courses conducted by him in last 12 months Average marks secured Adverse Comments (If any) Action
@php $user = app\Models\User::find($course_director); @endphp {{ $user->name }} 5 তথ্য অনুপস্থিত তথ্য অনুপস্থিত {{ trans('global.delete') }}

(D)Course Co-ordinator

@if ($course->course_co_ordinator) @foreach ($course->course_co_ordinator as $course_co_ordinator) @endforeach @endif
Course Co-Ordinator No. of Courses conducted by him in last 12 months Average marks secured Adverse Comments (If any) Action
@php $user = app\Models\User::find($course_co_ordinator); @endphp {{ $user->name }} 5 তথ্য অনুপস্থিত তথ্য অনুপস্থিত {{ trans('global.delete') }}

(E) Asst. Course Co-ordinator

@if ($course->associcate_course_co_ordinator) @foreach ($course->associcate_course_co_ordinator as $assoc_course_co_ordinator) @endforeach @endif
Asst. Course Co-ordinator No. of Courses conducted by him in last 12 months Average marks secured Adverse Comments (If any) Action
@php $user = app\Models\User::find($assoc_course_co_ordinator); @endphp {{ $user->name }} 5 তথ্য অনুপস্থিত তথ্য অনুপস্থিত {{ trans('global.delete') }}

(F) Course Helper

@if ($course->course_helper) @foreach ($course->course_helper as $course_helper) @endforeach @endif
Course Helper No. of Courses conducted by him in last 12 months Average marks secured Adverse Comments (If any) Action
@php $user = app\Models\User::find($course_helper); @endphp {{ $user->name }} 5 তথ্য অনুপস্থিত তথ্য অনুপস্থিত {{ trans('global.delete') }}
@endsection @section('scripts') @endsection