country_wise_university.blade.php 989 B

12345678910111213141516171819202122232425262728293031
  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</th>
  10. <th>University website</th>
  11. <th style="text-align: center;">Action</th>
  12. </tr>
  13. </thead>
  14. <tbody style="border-style: dashed;">
  15. @foreach($universities as $key=>$row)
  16. <tr>
  17. <td style="font-size: 11px;">{{++$key}}</td>
  18. <td style="font-size: 11px;">{{cn($row,'country.name','')}}</td>
  19. <td style="font-size: 11px;">{{$row->name}}</td>
  20. <td style="font-size: 11px;">{{$row->web_address}}</td>
  21. <td style="font-size: 11px; text-align: center;">
  22. <i class="fa fa-edit"></i>
  23. <i class="fa fa-trash ms-1"></i>
  24. </td>
  25. </tr>
  26. @endforeach
  27. </tbody>
  28. </table>
  29. @endif
  30. @endsection