application.blade.php 6.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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:154px 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. <span class="main_title" style="font-weight:700;">My Application</span>
  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">
  24. <div class="p-3" style="border-top: 1px solid #eee; border-bottom-style: dashed; border-width: 0.5px 0px 0.5px; border-bottom-color: #eee; border-left: 1px solid #eee; border-right: 1px solid #eee; 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;">
  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="font-size:11px !important; font-weight:800;">{{$row->student_apply_ref ?? ''}}</span>
  47. </div>
  48. </div>
  49. <div class="p-3" style="display:flex; border-width: 0px 0px 0.5px; border-top-style: dashed; border-top-color: #eee; border-left: 1px solid #eee; border-right: 1px solid #eee; border-bottom-style: dashed; border-bottom-color: #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;">({{cn($row,'proposal.proposal_ref','')}}) - {{cn($row,'proposal.title','')}}</strong></br>
  54. <div style="margin-top: -8px;">
  55. <span style="font-size:10px;">{{cn($row,'proposal.methology','')}}</span>
  56. <span>.</span>
  57. <span style="font-size:10px;">{{cn($row,'proposal.department','')}}</span>
  58. <span>.</span>
  59. <span style="font-size:10px;">{{cn($row,'proposal.status','')}}</span>
  60. </div>
  61. </div>
  62. </div>
  63. </div>
  64. </div>
  65. <div class="p-3" style="display:flex; border-width: 0px 0px 0.5px; border-top-style: dashed; border-top-color: #eee; border-left: 1px solid #eee; border-right: 1px solid #eee; border-bottom-style: dashed; border-bottom-color: #eee;">
  66. <div class="left" style="width:50%;">
  67. <div class="uni_details" style="display:flex;">
  68. <div class="inner_right ms-5">
  69. <span style="font-size:11px;">Start Date : {{ date('M Y', strtotime($row->created_at))}}</span><br>
  70. </div>
  71. </div>
  72. </div>
  73. <div class="text-end" style="width:50%;">
  74. <span style="font-size:11px;">Application Status </span><br>
  75. <span class="label_badge_radius" style="background-color: #d8fdd8; color: green;">Applied</span>
  76. <h6 style="font-size:11px !important; font-weight:800;"></h6>
  77. </div>
  78. </div>
  79. </div>
  80. @endforeach
  81. </div>
  82. </div>
  83. </div>
  84. </div><!--end container-->
  85. </section>
  86. @endsection