Files
2026-06-04 11:13:34 +01:00

19 lines
398 B
PHP

@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