load_ref_no_available_info.blade.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @extends('admin.sub_contents.base')
  2. @section('main')
  3. @if($teacher)
  4. <div class="alert mt-3 mb-3" style="border: 2px solid #e9f0f3 !important; width: 100%; display: -webkit-inline-box; font-size: 12px !important; font-weight:bold !important; color: black; border-radius: 6px;">
  5. <div class="col-md-12">
  6. <div class="row">
  7. <div class="col-md-10">
  8. <span style="margin: 0px;">{{$teacher->first_name}} {{$teacher->last_name}}</span></br>
  9. <span class="text-muted" style="font-weight: 500;">{{$teacher->designation}}</span></br>
  10. @if(isset($teacher->department_name))
  11. <span class="text-muted" style="font-weight: 500;">{{cn($teacher,'department_name.name','')}}</span>
  12. @else
  13. <span class="text-muted" style="font-weight: 500;">{{$teacher->others_department}}</span>
  14. @endif
  15. <span>.</span>
  16. <span class="text-muted" style="font-weight: 500;">{{$teacher->university_name}}</span>
  17. </div>
  18. <div class="col-md-2 mt-3">
  19. <span class="btn btn3 open_modal_page" data-url="{{route('modal-get',['name'=>'apply_student_proposal','id'=>$teacher->id])}}" data-title="Submit your Proposal" style="margin-left: 1.1rem;">Apply</span>
  20. </div>
  21. </div>
  22. </div>
  23. </div>
  24. @else
  25. <div class="alert mt-3 mb-3" style="border: 2px solid #e9f0f3 !important; width: 100%; display: -webkit-inline-box; font-size: 12px !important; font-weight:bold !important; color: black; border-radius: 6px;">
  26. <div class="col-md-12">
  27. <div class="row">
  28. <div class="col-md-12 text-center">
  29. <i class="fa fa-exclamation-triangle" style="color: #fdad2a !important; border-color: #fdad2a;
  30. "></i><span class="text-danger">This reference number is not valid or available!. Please try another reference no.</span>
  31. </div>
  32. </div>
  33. </div>
  34. </div>
  35. @endif
  36. @endsection