1234567891011121314151617181920212223242526 |
- @extends('admin.sub_contents.base')
- @section('main')
- @if(count($universities) > 0)
- <table class="table table-bordered list_table">
- <thead>
- <tr>
- <th>Sl</th>
- <th>Designation</th>
- <th>University Name</i></th>
- <th>University website</i></th>
- </tr>
- </thead>
- <tbody style="border-style: dashed;">
- @foreach($universities as $key=>$row)
- <tr>
- <td style="font-size: 11px;">{{++$key}}</td>
- <td style="font-size: 11px;">{{cn($row,'country.name','')}}</td>
- <td style="font-size: 11px;">{{$row->name}}</td>
- <td style="font-size: 11px;">{{$row->web_address}}</td>
- </tr>
- @endforeach
- </tbody>
- </table>
- @endif
-
- @endsection
|