33 lines
855 B
PHP
33 lines
855 B
PHP
@extends("layout.main")
|
|
@section("content")
|
|
<br/>
|
|
|
|
<h1>{{ $sys->name }}</h1>
|
|
<h2>{{ $sys->model }}</h2>
|
|
<br/>
|
|
<p>{{ $sys->notes }}</p>
|
|
</br>
|
|
<h5>Documents</h5>
|
|
<table class="table table-hover">
|
|
@foreach ($sys->documents as $doc)
|
|
<tr>
|
|
<td><a href='/system/{{ $sys->id }}/del/{{ $doc->id }}' class="btn btn-danger"><i class="fa fa-trash"><i></a></td>
|
|
<td>
|
|
<a href='/document/{{ $doc->id }}' class="btn">
|
|
<b>{{ $doc->title }}</b>
|
|
{{ $doc->subtitle }}
|
|
<small>{{ $doc->subsubtitle }}</small>
|
|
</a>
|
|
</td>
|
|
<td class="fit">
|
|
<a href='/document/{{ $doc->id }}' class="btn">{{ $doc->internal_id }}</a>
|
|
</td>
|
|
|
|
</tr>
|
|
@endforeach
|
|
</table>
|
|
<br/>
|
|
<p>To add a document to this system first navigate to the document then
|
|
click the Add To System <i class="btn btn-primary fa fa-plus"></i> button and select this system from the dropdown.</p>
|
|
@endsection
|