@extends('web.profile.profile-master') @section('trash-content')

{{ __('Trash') }}

{{ __('Items in trash will be permanently removed after 7 days') }}
{{ __('Auto Delete') }}
@forelse ($products as $product)
{{ $product->name }} {{-- --}}

{{ $product->name ?? 'Untitled Product' }}

{{ currencyFormat($product->asking_price) ?? '$0.00' }} {{ $product->created_at ? $product->created_at->diffForHumans() : 'Just now' }}
@csrf
@empty

{{ __('No Trashed Posts') }}

{{ __('You don’t have any items in the trash right now.') }}

@endforelse
@endsection