60 lines
1.2 KiB
PHP
60 lines
1.2 KiB
PHP
|
@extends('layouts.app')
|
||
|
|
||
|
@section('content')
|
||
|
|
||
|
<h1 class="title">Collections</h1>
|
||
|
|
||
|
<div class="col-md-8">
|
||
|
|
||
|
<a href="{{ route('settings.project.add') }}" class="pure-button button-small is-primary">
|
||
|
<i class="fa fa-plus-circle"></i>ADD NEW COLLECTION
|
||
|
</a>
|
||
|
|
||
|
<br><br>
|
||
|
|
||
|
<table class="pure-table pure-table-horizontal">
|
||
|
|
||
|
<thead>
|
||
|
<th>Collection</th>
|
||
|
<th>id</th>
|
||
|
<th>Document id's</th>
|
||
|
<th>Options</th>
|
||
|
</thead>
|
||
|
|
||
|
<tbody>
|
||
|
|
||
|
@foreach($collections as $collection)
|
||
|
|
||
|
<tr>
|
||
|
<td>{{ $collection->name }}</td>
|
||
|
<td>{{ $collection->id }}</td>
|
||
|
<td>
|
||
|
@foreach ($collection->documents as $document)
|
||
|
<p>document id: {{ $document->id }}</p>
|
||
|
@endforeach
|
||
|
|
||
|
</td>
|
||
|
<td>
|
||
|
<a class="edit" href="{{ route('settings.collection.edit', $collection->id) }}"><span aria-hidden="true"></span></a>
|
||
|
<a class="delete" href="{{ route('settings.collection.delete', $collection->id) }}"><span aria-hidden="true"></span></a>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</td>
|
||
|
</td>
|
||
|
</tr>
|
||
|
|
||
|
@endforeach
|
||
|
|
||
|
</tbody>
|
||
|
|
||
|
</table>
|
||
|
|
||
|
<div class="pure-u-1">
|
||
|
{{ $collections->links('vendor.pagination.default') }}
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
@stop
|