You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Marble includes full-text search over published content.
Frontend Search
The demo app ships a SearchController at app/Http/Controllers/SearchController.php with a route:
GET /search?q=your+query
Results are rendered in resources/views/marble-pages/search.blade.php.
How It Works
The controller queries the item_values table for field values matching the search term (SQL LIKE). Results are filtered to published items only. The view highlights matching keywords with <mark> tags.