I'm getting an error [ReflectionException] Class App\Http\Controllers\Frontend\TagsController does not exist when I run php artisan route:list
some one help.
TagsController
Try namespace like this, in the controller
namespace App\Http\Controllers\Frontend;
TagsController
in the routes file and namespace of the controller. – Alexey Mezenin