{{-- Header / Hero section for context (Optional, but gives premium feel) --}}

{{ __('Pre-Owned') }} {{ __('Industrial Solutions') }}

{{ __('Discover high-quality used machinery from top global brands, thoroughly inspected and ready for your production line.') }}

{{-- FILTER SECTION --}}
{{-- ROW 1: SEARCH --}}
{{-- ROW 2: FILTERS --}}
{{-- ACTION BUTTONS --}}
{{-- MACHINE LIST --}}
@forelse ($machines as $machine)
{{-- Image with overlay/status --}}
{{ $machine->brand }} {{ $machine->model }} {{-- Status Badge --}}
{{ __(ucfirst($machine->sale_status->value)) }}
{{-- Year Badge --}}
{{ $machine->year ?? 'N/A' }}
{{ $machine->brand }}

{{ $machine->model }}

{{ Str::limit(strip_tags($machine->description), 90) }}

@empty

{{ __('No machines found matching your criteria.') }}

@endforelse
{{-- PAGINATION --}}
{{ $machines->links('vendor.pagination.paginate-livewire') }}
{{-- ADD CUSTOM STYLES --}}