// Generate a business name using playful adjectives and color-related nouns
$businessName = BusinessNameGenerator::generate('playful', 'color')->first();
echo $businessName; // Example output: "Cheerful Blue"
// Generate a business name using playful adjectives and color-related nouns
$businessName = BusinessNameGenerator::amount(2)->generate()->get();
echo $businessName; // Example output: ["Cheerful Blue", "Red Trading]
namespace YourNamespace;
use Designbycode\BusinessNameGenerator\HasGeneratorLists;
class CustomAdjectives implements HasGeneratorLists
{
public function default(): array
{
return ["Energetic", "Bold", "Brilliant"];
}
public function funny(): array
{
return ["Zany", "Wacky", "Goofy"];
}
public function playful(): array
{
return ["Bouncy", "Jovial", "Perky"];
}
public function color(): array
{
return ["Crimson", "Amber", "Sapphire"];
}
}
use Designbycode\BusinessNameGenerator\BusinessNameGenerator;
use YourNamespace\CustomAdjectives;
use Designbycode\BusinessNameGenerator\Nouns;
$generator = BusinessNameGenerator::generate((new CustomAdjectives())->default(), (new Nouns())->default());
$businessName = BusinessNameGenerator::generate('default', 'default');
echo $businessName; // Example output: "Energetic Solutions"
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.