1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- @extends('web.layouts.master')
- @section('content')
- <section class="bg-half-170 d-table w-100" style="background-color: #efefef; height:100vh; padding:154px 0px 5px;">
- <div class="container">
- <div class="row align-items-center p-3">
- <div class="col-md-12 mt-2">
- <div class="row">
- <div class="col-md-10" style="width:83%;">
- <div class="content_header ml-0">
- <div class="right">
- <span class="main_title" style="font-weight:700;">My Application</span>
- </div>
- </div>
- </div>
- <!-- <div class="col-md-2 text-right">
- <button class="submit_button" style="margin-left:2.6rem;">Add New</button>
- </div> -->
- </div>
- </div>
- <div class="col-md-12">
- <div class="scrolled_content_part">
- @foreach($student_proposal as $key=>$row)
- <div class="single_ad_pref_item">
- <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;">
- <div class="left" style="width:50%;">
- <div class="uni_details" style="display:flex;">
- <div class="inner_left mt-1" style="border: 1px solid black; border-radius: 20px; padding: 6px; height: 37px; width: 37px;">
- <i class="fa fa fa-university ms-1"></i>
- </div>
- <div class="alert" style="background-color:white; padding: 3px 7px;">
- <strong style="font-size:13px;">{{ cn($row,'teacher_details.first_name','')}} {{ cn($row,'teacher_details.last_name','')}}</strong></br>
- <span style="font-size:10px; font-weight:400;"> {{cn($row,'teacher_details.designation','')}} </span>
- <span>.</span>
- @if(isset($row->teacher_details->department_name))
- <span style="font-size:10px; font-weight:400;"> {{cn($row,'teacher_details.department_name.name','')}}</span>
- @else
- <span style="font-size:10px; font-weight:400;">{{cn($row,'teacher_details.others_department','')}}</span>
- @endif
- <span>.</span>
- <span style="font-size:10px; font-weight:400;"> {{cn($row,'teacher_details.university_name','')}} </span>
- </div>
- </div>
- </div>
- <div class="text-end" style="width:50%;">
- <span style="font-size:11px;">Apply Reference</span><br>
- <span class="label_badge_radius" style="font-size:11px !important; font-weight:800;">{{$row->student_apply_ref ?? ''}}</span>
- </div>
- </div>
- <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;">
- <div class="left" style="width:50%;">
- <div class="uni_details" style="display:flex;">
- <div class="inner_right ms-5">
- <strong style="font-size:13px;">({{cn($row,'proposal.proposal_ref','')}}) - {{cn($row,'proposal.title','')}}</strong></br>
- <div style="margin-top: -8px;">
- <span style="font-size:10px;">{{cn($row,'proposal.methology','')}}</span>
- <span>.</span>
- <span style="font-size:10px;">{{cn($row,'proposal.department','')}}</span>
- <span>.</span>
- <span style="font-size:10px;">{{cn($row,'proposal.status','')}}</span>
- </div>
- </div>
- </div>
- </div>
- </div>
- <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;">
- <div class="left" style="width:50%;">
- <div class="uni_details" style="display:flex;">
- <div class="inner_right ms-5">
- <span style="font-size:11px;">Start Date : {{ date('M Y', strtotime($row->created_at))}}</span><br>
- </div>
- </div>
- </div>
- <div class="text-end" style="width:50%;">
- <span style="font-size:11px;">Application Status </span><br>
- <span class="label_badge_radius" style="background-color: #d8fdd8; color: green;">Applied</span>
- <h6 style="font-size:11px !important; font-weight:800;"></h6>
- </div>
- </div>
- </div>
- @endforeach
- </div>
- </div>
- </div>
- </div><!--end container-->
- </section>
- @endsection
|