tethys/resources/views/settings/license/license.blade.php

42 lines
1.1 KiB
PHP
Raw Normal View History

2018-08-31 14:47:04 +00:00
@extends('settings.layouts.app')
2018-08-06 12:30:51 +00:00
@section('content')
2018-08-29 15:18:15 +00:00
<div class="header">
<h3 class="header-title">
2019-04-18 11:16:50 +00:00
<i class="fab fa-creative-commons"></i> Licenses
2018-08-29 15:18:15 +00:00
</h3>
</div>
<div class="pure-g box-content">
<div class="pure-u-1">
<table class="pure-table pure-table-horizontal">
<thead>
<th>Licence</th>
2018-10-10 16:28:51 +00:00
<th>Sort Order</th>
2018-08-29 15:18:15 +00:00
<th></th>
</thead>
<tbody>
@foreach($licenses as $license)
<tr>
2018-10-10 16:28:51 +00:00
<td>{{ $license->name_long }}</td>
<td>{{ $license->sort_order }}</td>
2018-08-29 15:18:15 +00:00
<td>
<a class="edit" href="{{ route('settings.license.edit', $license->id) }}">
<span>edit</span>
</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
2018-08-06 12:30:51 +00:00
@stop