海工商新版后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
423 B

<style>
.table tr:first-child td {
border-top: 0;
}
</style>
<div class="table-responsive">
<table class="table">
@foreach($dependencies as $dependency => $version)
<tr>
<td width="240px" class="bold text-80">{{ $dependency }}</td>
<td><span class="label bg-primary">{{ $version }}</span></td>
</tr>
@endforeach
</table>
</div>