tethys/resources/views/settings/license/license.blade.php
2020-06-10 21:09:18 +02:00

42 lines
1.1 KiB
PHP

@extends('settings.layouts.app')
@section('content')
<div class="header">
<h3 class="header-title">
<i class="fab fa-creative-commons"></i> Licenses
</h3>
</div>
<div class="pure-g box-content">
<div class="pure-u-1">
<table class="pure-table pure-table-horizontal">
<thead>
<th>Licence</th>
<th>Sort Order</th>
<th></th>
</thead>
<tbody>
@foreach($licenses as $license)
<tr>
<td>{{ $license->name_long }}</td>
<td>{{ $license->sort_order }}</td>
<td>
<a class="edit" href="{{ route('settings.license.edit', $license->id) }}">
<span>edit</span>
</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
@stop