12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- @if(count($teacher) >0)
- @foreach($teacher as $row)
- <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;">
- <div class="col-md-12">
- <div class="row">
- <div class="col-md-10">
- <span style="margin: 0px;">{{$row->first_name}} {{$row->last_name}}</span></br>
- <span class="text-muted" style="font-weight: 500;">{{$row->designation}}</span></br>
- @if(isset($row->department_name))
- <span class="text-muted" style="font-weight: 500;">{{cn($row,'department_name.name','')}}</span>
- @else
- <span class="text-muted" style="font-weight: 500;">{{$row->others_department}}</span>
- @endif
-
- <span>.</span>
- <span class="text-muted" style="font-weight: 500;">{{$row->university_name}}</span>
- </div>
- <div class="col-md-2 mt-3">
- <span class="btn btn3 open_modal_page" data-url="{{route('modal-get',['name'=>'apply_student_proposal','id'=>$row->id])}}" data-title="Submit your Proposal" style="margin-left: 1.1rem;">Apply</span>
- </div>
- </div>
- </div>
- </div>
- @endforeach
- @else
- <div class="alert mt-3 mb-3" style="border: 2px solid
- <div class="col-md-12">
- <div class="row">
- <div class="col-md-12 text-center">
- <span class="text-danger">No data found!</span>
- </div>
- </div>
- </div>
- </div>
- @endif
- {{-- @include('web.layouts.modal') --}}
- <script>
- $(function(){
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- });
- </script>
|