fanggota.blade.php
855 Bytes
@extends('frontend.layout.app')
@section('content')
@foreach($link as $links)
<div class="container mt-5">
<div class="row">
<div class="h5 my-5 text-center">
<span>
Daftar Tautan Website Anggota Jaringan Dokumentasi dan Informasi Hukum Nasional (JDIHN)
</span>
</div>
<table class="table table-striped">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Nama Lembaga</th>
<th scope="col">URL</th>
</tr>
</thead>
<tbody>
<tr>
<td> 1 </td>
<td> {{ $links->nama }}</td>
<td><a href="#"> {{ $links->url }}</a></td>
</tr>
</tbody>
</table>
</div>
</div>
@endforeach
@endsection