add publish module

This commit is contained in:
Arno Kaimbacher 2018-08-29 17:18:15 +02:00
parent 100f6db9a6
commit ffbbc04206
93 changed files with 8150 additions and 10228 deletions

View file

@ -1,43 +1,40 @@
@extends('layouts.app')
@extends('layouts.settings.layout')
@section('content')
<div class="title">
<h2><i class="fa fa-file"></i> LICENSES</h2>
</div>
<div class="header">
<h3 class="header-title">
<i class="fa fa-file"></i> Licenses
</h3>
</div>
<div class="col-md-8">
<div class="pure-g box-content">
<div class="pure-u-1">
<table class="pure-table pure-table-horizontal">
<table class="pure-table pure-table-horizontal">
<thead>
<th>Licence</th>
<th></th>
</thead>
<thead>
<th>Licence</th>
<th></th>
</thead>
<tbody>
@foreach($licenses as $license)
<tr>
<td>{{ $license->name_long }}</td>
<td>
<a class="edit" href="{{ route('settings.license.edit', $license->id) }}">
<span>edit</span>
</a>
</td>
</tr>
@endforeach
<tbody>
@foreach($licenses as $license)
<tr>
<td>{{ $license->name_long }}</td>
<td>
<a class="edit" href="{{ route('settings.license.edit', $license->id) }}">
<span>edit</span>
</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</tbody>
</table>
</div>
</div>
@stop