I'm working with Laravel Scout for the first time, and I use the documentation form here: https://laravel.com/docs/5.4/scout#searching.
After following all the steps and adding to my route files
Route::get('warbands/search', function (Request $request) {
return App\Order::search($request->search)->get();
});
I get Class 'App\Order' not found.
Am I missing something I have to include?