You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
566 B

7 years ago
@extends('app')
7 years ago
7 years ago
@section('content')
@include('partials.search')
7 years ago
@if($apps->first())
@include('sortable')
7 years ago
@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">
7 years ago
@include('add')
</div>
7 years ago
@endif
7 years ago
7 years ago
@endsection