Heimdall/resources/views/welcome.blade.php
2018-02-03 15:46:14 +00:00

19 lines
533 B
PHP

@extends('app')
@section('content')
@if($apps->first())
@include('sortable')
@else
<div class="message-container2">
<div class="alert alert-danger">
<p>There are currently no pinned Applications, <a href="{{ route('items.create') }}">Add an application here</a> or <a id="pin-item" href="">Pin an item to the dash</a></p>
</div>
</div>
<div id="sortable">
@include('add')
</div>
@endif
@endsection