@extends('layouts.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') }} {{ html()->form('DELETE', route('items.destroy', $app->id))->style('display:inline')->open() }} {{ html()->form()->close() }}
{{ __('app.settings.no_items') }}
@endsection