@extends('app') @section('content')
{{ __('app.apps.app_list') }} @if( isset($trash) && $trash->count() > 0 ) {{ __('app.apps.view_trash') }} ({{ $trash->count() }}) @endif
@if($apps->first()) @foreach($apps as $app) @endforeach @else @endif
{{ __('app.title') }} {{ __('app.url') }} {{ __('app.settings.edit') }} {{ __('app.delete') }}
{{ $app->title }} {{ $app->link }} target }} href="{!! route('items.edit', [$app->id], false) !!}" title="{{ __('app.settings.edit') }} {!! $app->title !!}"> {!! Form::open(['method' => 'DELETE','route' => ['items.destroy', $app->id],'style'=>'display:inline']) !!} {!! Form::close() !!}
{{ __('app.settings.no_items') }}
@endsection