Heimdall/resources/views/welcome.blade.php

19 lines
533 B
PHP
Raw Normal View History

2018-01-29 20:14:40 +00:00
@extends('app')
2018-01-26 14:35:01 +00:00
2018-01-29 20:14:40 +00:00
@section('content')
2018-02-01 14:45:59 +00:00
@if($apps->first())
@include('sortable')
2018-02-01 14:45:59 +00:00
@else
2018-02-03 15:46:14 +00:00
<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">
2018-02-01 19:55:03 +00:00
@include('add')
2018-02-03 15:46:14 +00:00
</div>
2018-02-01 14:45:59 +00:00
@endif
2018-01-29 12:41:57 +00:00
2018-01-29 20:14:40 +00:00
@endsection