country_wise_university.blade.php 769 B

1234567891011121314151617181920212223242526
  1. @extends('admin.sub_contents.base')
  2. @section('main')
  3. @if(count($universities) > 0)
  4. <table class="table table-bordered list_table">
  5. <thead>
  6. <tr>
  7. <th>Sl</th>
  8. <th>Designation</th>
  9. <th>University Name</i></th>
  10. <th>University website</i></th>
  11. </tr>
  12. </thead>
  13. <tbody style="border-style: dashed;">
  14. @foreach($universities as $key=>$row)
  15. <tr>
  16. <td style="font-size: 11px;">{{++$key}}</td>
  17. <td style="font-size: 11px;">{{cn($row,'country.name','')}}</td>
  18. <td style="font-size: 11px;">{{$row->name}}</td>
  19. <td style="font-size: 11px;">{{$row->web_address}}</td>
  20. </tr>
  21. @endforeach
  22. </tbody>
  23. </table>
  24. @endif
  25. @endsection