54 lines
1.2 KiB
PHP
54 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Spatie\LaravelIgnition\Solutions;
|
|
|
|
use Illuminate\Support\Facades\Artisan;
|
|
use Spatie\Ignition\Contracts\RunnableSolution;
|
|
|
|
class RunMigrationsSolution implements RunnableSolution
|
|
{
|
|
protected string $customTitle;
|
|
|
|
public function __construct(string $customTitle = '')
|
|
{
|
|
$this->customTitle = $customTitle;
|
|
}
|
|
|
|
public function getSolutionTitle(): string
|
|
{
|
|
return $this->customTitle;
|
|
}
|
|
|
|
public function getSolutionDescription(): string
|
|
{
|
|
return 'You might have forgotten to run your database migrations.';
|
|
}
|
|
|
|
public function getDocumentationLinks(): array
|
|
{
|
|
return [
|
|
'Database: Running Migrations docs' => 'https://laravel.com/docs/master/migrations#running-migrations',
|
|
];
|
|
}
|
|
|
|
public function getRunParameters(): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function getSolutionActionDescription(): string
|
|
{
|
|
return 'You can try to run your migrations using `php artisan migrate`.';
|
|
}
|
|
|
|
public function getRunButtonText(): string
|
|
{
|
|
return 'Run migrations';
|
|
}
|
|
|
|
public function run(array $parameters = []): void
|
|
{
|
|
Artisan::call('migrate');
|
|
}
|
|
}
|