blessing-skin-server/app/Console/Commands/UpdateCommand.php
2020-04-01 15:34:06 +08:00

19 lines
369 B
PHP

<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class UpdateCommand extends Command
{
protected $signature = 'update';
protected $description = 'Execute update.';
public function handle()
{
app()->call('App\Http\Controllers\UpdateController@update');
$this->info(trans('setup.updates.success.title'));
}
}