@extends('app') @section('content')
Showing Deleted Applications
@if($trash->first()) @foreach($trash as $app) @endforeach @else @endif
{{ __('app.title') }} Url {{ __('app.restore') }} {{ __('app.delete') }}
{{ $app->title }} {{ __('app.url') }} {!! Form::open(['method' => 'DELETE','route' => ['items.destroy', $app->id],'style'=>'display:inline']) !!} {!! Form::close() !!}
{{ __('app.settings.no_items') }}
@endsection