PATH:
home
/
lab2454c
/
westernclear.net
/
vendor
/
spatie
/
laravel-ignition
/
src
/
Solutions
<?php namespace Spatie\LaravelIgnition\Solutions; use Spatie\Ignition\Contracts\Solution; class SuggestUsingCorrectDbNameSolution implements Solution { public function getSolutionTitle(): string { return 'Database name seems incorrect'; } public function getSolutionDescription(): string { $defaultDatabaseName = env('DB_DATABASE'); return "You're using the default database name `$defaultDatabaseName`. This database does not exist.\n\nEdit the `.env` file and use the correct database name in the `DB_DATABASE` key."; } /** @return array<string, string> */ public function getDocumentationLinks(): array { return [ 'Database: Getting Started docs' => 'https://laravel.com/docs/master/database#configuration', ]; } }
[-] SuggestLivewireMethodNameSolution.php
[edit]
[-] MakeViewVariableOptionalSolution.php
[edit]
[-] SuggestLivewirePropertyNameSolution.php
[edit]
[-] SuggestImportSolution.php
[edit]
[-] SuggestCorrectVariableNameSolution.php
[edit]
[+]
..
[-] RunMigrationsSolution.php
[edit]
[-] GenerateAppKeySolution.php
[edit]
[+]
SolutionProviders
[-] SuggestUsingCorrectDbNameSolution.php
[edit]
[+]
SolutionTransformers
[-] UseDefaultValetDbCredentialsSolution.php
[edit]
[-] LivewireDiscoverSolution.php
[edit]