Use Explicit or Implicit Model Binding on Routes in Laravel Package

I am migrating some app functionality into a Laravel package. The package includes Models, Controllers and routes. I am using Laravel 9 Everything is working except my Models are not biding to the routes so the models are not being automatically resolved. // Route Route::get(‘/medium/{medium}’, [\ArtMoi\Http\Controllers\MediumController::class, ‘fetch’] )->name("get-medium"); Model does not automatically load. In the… Read More Use Explicit or Implicit Model Binding on Routes in Laravel Package