21 lines
389 B
PHP
21 lines
389 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
class HRCInstall extends HRCCommand implements HRCCommandInterface
|
|
{
|
|
protected $signature = 'getinstall';
|
|
|
|
public function command($input, $output = null)
|
|
{
|
|
Artisan::call('migrate');
|
|
Artisan::call('db:seed');
|
|
|
|
return [
|
|
'status' => 'success'
|
|
];
|
|
}
|
|
}
|