@extends('app') @section('content')
Application list @if( isset($trash) && $trash->count() > 0 ) View trash ({{ $trash->count() }}) @endif
Add
@if($apps->first()) @foreach($apps as $app) @endforeach @else @endif
Title Url Edit Delete
{{ $app->title }} {{ $app->url }} {!! Form::open(['method' => 'DELETE','route' => ['items.destroy', $app->id],'style'=>'display:inline']) !!} {!! Form::close() !!}
No items found
@endsection