Open
Description
The round binding on this package conflicts with the application 'tasks' routes.
Route::bind('task', function ($value) {
return cache()->rememberForever('totem.task.'.$value, function () use ($value) {
return Task::find($value) ?? abort(404);
});
});
Conflict with application routes
Route::resource('tasks', TaskController::class);