Heimdall/resources/views/welcome.blade.php
2018-02-01 19:55:03 +00:00

15 lines
282 B
PHP

@extends('app')
@section('content')
@if($apps->first())
@foreach($apps as $app)
@include('item')
@endforeach
@include('add')
@else
There are currently no Applications, add one here
@include('add')
@endif
@endsection