We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aca2cf6 commit 89e60b9Copy full SHA for 89e60b9
src/Http/Controllers/TasksController.php
@@ -97,9 +97,10 @@ public function view(Task $task)
97
*/
98
public function edit(Task $task)
99
{
100
- $commands = Totem::getCommands()->map(function($command) {
101
- return ['name' => $command->getName(), 'description' => $command->getDescription()];
+ $commands = Totem::getCommands()->map(function ($command) {
+ return ['name' => $command->getName(), 'description' => $command->getDescription()];
102
});
103
+
104
return view('totem::tasks.form', [
105
'task' => $task,
106
'commands' => $commands,
0 commit comments