Heimdall/resources/views/welcome.blade.php
2018-02-01 20:29:44 +00:00

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