Edit File: CommandsController.php
<?php namespace Laravel\Telescope\Http\Controllers; use Laravel\Telescope\EntryType; use Laravel\Telescope\Watchers\CommandWatcher; class CommandsController extends EntryController { /** * The entry type for the controller. * * @return string */ protected function entryType() { return EntryType::COMMAND; } /** * The watcher class for the controller. * * @return string */ protected function watcher() { return CommandWatcher::class; } }
Back to File Manager