@extends('layouts.app') @section('header-title', __('Trashed Product List')) @section('content')

{{ __('Trashed Product List') }}

@forelse($products as $key => $product) @empty @endforelse
{{ __('SL') }}. {{ __('Thumbnail') }} {{ __('Product Name') }} {{ __('Shop') }} {{ __('Brand') }} {{ __('Price') }} {{ __('Discount Price') }} {{ __('Action') }}
{{ ++$key }} {{ Str::limit($product->name, 50, '...') }} {{ $product->shop->name }} {{ $product->brand->name ?? '' }} {{ showCurrency($product->price) }} {{ showCurrency($product->discount_price) }}
@hasPermission('shop.product.show') icon @endhasPermission @hasPermission('shop.product.restore') icon @endhasPermission
{{ __('No Data Found') }}
{{ $products->withQueryString()->links() }}
@endsection @push('scripts') @endpush