application.blade.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. @extends('web.layouts.master')
  2. @section('content')
  3. <section class="bg-half-170 d-table w-100" style="background-color: #efefef; height:100vh; padding:121px 0px 5px;">
  4. <div class="container mb-2">
  5. <div class="row align-items-center p-3">
  6. <div class="col-md-12">
  7. <div class="row">
  8. <div class="col-md-10" style="width:83%;">
  9. <div class="content_header ml-0">
  10. <div class="right">
  11. <h6 style="font-weight:bold !important; margin: 0px; color: #141639c4;">MY APPLICATION</h6>
  12. </div>
  13. </div>
  14. </div>
  15. <!-- <div class="col-md-2 text-right">
  16. <button class="submit_button" style="margin-left:2.6rem;">Add New</button>
  17. </div> -->
  18. </div>
  19. </div>
  20. @if(count($student_proposal) > 0 )
  21. <div class="col-md-12">
  22. <div class="scrolled_content_part">
  23. @foreach($student_proposal as $key=>$row)
  24. <div class="single_ad_pref_item mb-4">
  25. <div class="p-2" style="display:flex;">
  26. <div class="left" style="width:50%;">
  27. <div class="uni_details" style="display:flex;">
  28. <div class="inner_left mt-1" style="border: 1px solid black; border-radius: 20px; padding: 6px; height: 37px; width: 37px;">
  29. <i class="fa fa fa-university ms-1"></i>
  30. </div>
  31. <div class="alert" style="background-color:white; padding: 3px 7px; margin-bottom: 0px;">
  32. <strong style="font-size:13px;">{{ cn($row,'teacher_details.first_name','')}} {{ cn($row,'teacher_details.last_name','')}}</strong></br>
  33. <span style="font-size:10px; font-weight:400;"> {{cn($row,'teacher_details.designation','')}} </span>
  34. <span>.</span>
  35. @if(isset($row->teacher_details->department_name))
  36. <span style="font-size:10px; font-weight:400;"> {{cn($row,'teacher_details.department_name.name','')}}</span>
  37. @else
  38. <span style="font-size:10px; font-weight:400;">{{cn($row,'teacher_details.others_department','')}}</span>
  39. @endif
  40. <span>.</span>
  41. <span style="font-size:10px; font-weight:400;"> {{cn($row,'teacher_details.university_name','')}} </span>
  42. </div>
  43. </div>
  44. </div>
  45. <div class="text-end" style="width:50%;">
  46. <span style="font-size:11px;">Apply Reference</span><br>
  47. <span class="label_badge_radius" style="background-color: #141639c4; color: white; border-radius: 4px; font-size:11px !important; font-weight:800;">{{$row->student_apply_ref ?? ''}}</span>
  48. </div>
  49. </div>
  50. <div class="p-2" style="display:flex; border-top: 1px solid #eee;">
  51. <div class="left" style="width:50%;">
  52. <div class="uni_details" style="display:flex;">
  53. <div class="inner_right ms-5">
  54. <strong style="font-size:13px; font-weight: 400;">{{cn($row,'proposal.title','')}}</strong></br>
  55. <div style="margin-top: -2px;">
  56. <span style="font-size:10px;">{{cn($row,'proposal.proposal_ref','')}}</span>
  57. <span>.</span>
  58. <span style="font-size:10px;">{{cn($row,'proposal.methology','')}}</span>
  59. <span>.</span>
  60. <span style="font-size:10px;">{{cn($row,'proposal.department','')}}</span>
  61. <span>.</span>
  62. <span style="font-size:10px;">{{cn($row,'proposal.status','')}}</span>
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. </div>
  68. <div class="p-2" style="display:flex; border-top: 1px solid #eee;">
  69. <div class="left" style="width:50%;">
  70. <div class="uni_details" style="display:flex;">
  71. <div class="inner_right ms-5">
  72. <span style="font-size:11px;">Preferred Start Date : <br><strong>{{ date('M Y', strtotime($row->created_at))}}</strong></span><br>
  73. </div>
  74. </div>
  75. </div>
  76. <div class="text-end" style="width:50%;">
  77. <span style="font-size:11px;">Application Status </span><br>
  78. <span class="label_badge_radius" style="background-color: #d8fdd8; color: green; border-radius: 5px; font-weight: bold;">Applied</span>
  79. </div>
  80. </div>
  81. <div class="p-2" style="display:flex; border-top: 1px solid #eee;">
  82. <div class="left">
  83. <div class="uni_details" style="display:flex;">
  84. <div class="inner_right ms-5">
  85. <span style="font-size:11px; color: red;">{{ $row->feedback_msg ?? ""}}</span><br>
  86. </div>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. @endforeach
  92. </div>
  93. @else
  94. <div class="alert mt-2 mb-3" style="background-color: #ffff; border-color: #e9f0f3; font-size: 12px !important; color: #dc3545; border-radius: 30px; padding: 8px 15px;">
  95. <span>No Application available.</span>
  96. </div>
  97. @endif
  98. </div>
  99. </div>
  100. </div><!--end container-->
  101. </section>
  102. @endsection