application.blade.php 6.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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">
  5. <div class="row align-items-center p-3">
  6. <div class="col-md-12 mt-2">
  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. <div class="col-md-12">
  21. <div class="scrolled_content_part">
  22. @foreach($student_proposal as $key=>$row)
  23. <div class="single_ad_pref_item mb-4">
  24. <div class="p-2" style="display:flex;">
  25. <div class="left" style="width:50%;">
  26. <div class="uni_details" style="display:flex;">
  27. <div class="inner_left mt-1" style="border: 1px solid black; border-radius: 20px; padding: 6px; height: 37px; width: 37px;">
  28. <i class="fa fa fa-university ms-1"></i>
  29. </div>
  30. <div class="alert" style="background-color:white; padding: 3px 7px; margin-bottom: 0px;">
  31. <strong style="font-size:13px;">{{ cn($row,'teacher_details.first_name','')}} {{ cn($row,'teacher_details.last_name','')}}</strong></br>
  32. <span style="font-size:10px; font-weight:400;"> {{cn($row,'teacher_details.designation','')}} </span>
  33. <span>.</span>
  34. @if(isset($row->teacher_details->department_name))
  35. <span style="font-size:10px; font-weight:400;"> {{cn($row,'teacher_details.department_name.name','')}}</span>
  36. @else
  37. <span style="font-size:10px; font-weight:400;">{{cn($row,'teacher_details.others_department','')}}</span>
  38. @endif
  39. <span>.</span>
  40. <span style="font-size:10px; font-weight:400;"> {{cn($row,'teacher_details.university_name','')}} </span>
  41. </div>
  42. </div>
  43. </div>
  44. <div class="text-end" style="width:50%;">
  45. <span style="font-size:11px;">Apply Reference</span><br>
  46. <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>
  47. </div>
  48. </div>
  49. <div class="p-2" style="display:flex; border-top: 1px solid #eee;">
  50. <div class="left" style="width:50%;">
  51. <div class="uni_details" style="display:flex;">
  52. <div class="inner_right ms-5">
  53. <strong style="font-size:13px; font-weight: 400;">{{cn($row,'proposal.title','')}}</strong></br>
  54. <div style="margin-top: -2px;">
  55. <span style="font-size:10px;">{{cn($row,'proposal.proposal_ref','')}}</span>
  56. <span>.</span>
  57. <span style="font-size:10px;">{{cn($row,'proposal.methology','')}}</span>
  58. <span>.</span>
  59. <span style="font-size:10px;">{{cn($row,'proposal.department','')}}</span>
  60. <span>.</span>
  61. <span style="font-size:10px;">{{cn($row,'proposal.status','')}}</span>
  62. </div>
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. <div class="p-2" style="display:flex; border-top: 1px solid #eee;">
  68. <div class="left" style="width:50%;">
  69. <div class="uni_details" style="display:flex;">
  70. <div class="inner_right ms-5">
  71. <span style="font-size:11px;">Preferred Start Date : <br><strong>{{ date('M Y', strtotime($row->created_at))}}</strong></span><br>
  72. </div>
  73. </div>
  74. </div>
  75. <div class="text-end" style="width:50%;">
  76. <span style="font-size:11px;">Application Status </span><br>
  77. <span class="label_badge_radius" style="background-color: #d8fdd8; color: green; border-radius: 5px; font-weight: bold;">Applied</span>
  78. </div>
  79. </div>
  80. </div>
  81. @endforeach
  82. </div>
  83. </div>
  84. </div>
  85. </div><!--end container-->
  86. </section>
  87. @endsection