@extends('app') @section('content')
Showing Deleted Applications
@if($trash->first()) @foreach($trash as $app) @endforeach @else @endif
Title Description Url Restore Delete
{{ $app->title }} {{ $app->description }} {{ $app->url }} {!! Form::open(['method' => 'DELETE','route' => ['items.destroy', $app->id],'style'=>'display:inline']) !!} {!! Form::close() !!}
No items found
@endsection