I am using Laravel 6.0 and I try to list all my routes with artisan route:list, but it fails and returns:
artisan route:list
Illuminate\\Contracts\\Container\\
try to correct your controller name
my route was
Route::get('/lien/{id}','liensControler@show');
and my controller was
class liensController extends Controller { // all the methods of controller goes here. }