Initial import

This commit is contained in:
2026-06-04 11:13:34 +01:00
commit 563d9cc96d
143 changed files with 10572 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
@extends("layout.main")
@section("content")
<br/>
<h1>Your systems</h1>
<br/>
<ul class="list-group">
@foreach ($systems as $system)
<li class="list-group-item">
<a class="btn" href='/system/{{ $system->id }}'><b>{{ $system->name }}</b> {{ $system->model }}</a>
</li>
@endforeach
</ul>
<a class="btn btn-secondary" href='/system/add'>Add a new system</a>
@endsection