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.
 
 
 
 
 

25 lines
699 B

@extends('app')
@section('content')
@include('partials.search')
@if($apps->first())
@include('sortable')
@else
<div class="message-container2">
<div class="alert alert-danger">
<p>{!! __('app.dash.no_apps',
[
'link1' => '<a href="'.route('items.create', [], false).'">'.__('app.dash.link1').'</a>',
'link2' => '<a id="pin-item" href="">'.__('app.dash.link2').'</a>'
]) !!}</p>
</div>
</div>
<div id="sortable">
@include('add')
</div>
@endif
@endsection