Fixes where() constraints and soft-delete filtering on Laravel Scout 11.
Scout 11 changed Builder->wheres from an associative [field => value] array to a list of [field => ..., operator => ..., value => ...] arrays. The ^11 composer constraint was added previously without updating the engine, so where() clauses and soft-delete handling broke on Scout 11.
applyWheres() and handleSoftDeletes() now detect the entry shape per clause and support both formats, so operators are honored on Scout 11 while Scout <=10 continues to work. Added tests covering both formats.
Full Changelog: v16.1.0...v16.1.1