mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-21 20:20:34 +09:00
15 lines
324 B
PHP
15 lines
324 B
PHP
@extends('app')
|
|
|
|
@section('content')
|
|
@if($apps->first())
|
|
@foreach($apps as $app)
|
|
@include('item')
|
|
@endforeach
|
|
@include('add')
|
|
@else
|
|
There are currently no Applications, <a href="{{ route('items.create') }}">add one here</a>
|
|
@include('add')
|
|
@endif
|
|
|
|
|
|
@endsection |