@extends('layouts.app') @section('content') {{-- Page Header --}} {{-- Fast Selling Table --}}

{{ __('Fast Selling') }} ({{ __('Latest') }})

@forelse($fastSellings as $item) @empty @endforelse
# {{ __('Title') }} {{ __('Description') }} {{ __('Thumbnail') }} {{ __('Actions') }}
{{ $loop->iteration }} {{ $item->title }} {{ $item->description }} @if ($item->thumbnail) {{ $item->title }} @else {{ __('No Image') }} {{ __('No Image') }} @endif
{{-- Edit --}}
{{ __('No fast selling items found') }}.
{{-- Pagination --}} {{ $fastSellings->links() }}
@endsection