Initial import
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user