42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
@extends('settings.layouts.app')
|
|
|
|
@section('content')
|
|
<div class="header">
|
|
<h3 class="header-title">
|
|
<i class="fa fa-file"></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 |