Loading repository data…
Loading repository data…
jeffersongoncalves / repository
This Laravel package provides a Faker provider to generate fictional cartoon company names. Perfect for seeding your database with fun and recognizable company names from popular cartoons and animated series.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.

This Laravel package provides a Faker provider to generate fictional cartoon company names. Perfect for seeding your database with fun and recognizable company names from popular cartoons and animated series.
You can install the package via composer:
composer require --dev jeffersongoncalves/laravel-fake-cartoons
fake()->cartoonCompany();
use Illuminate\Database\Eloquent\Factories\Factory;
class CompanyFactory extends Factory
{
public function definition(): array
{
return [
'name' => fake()->cartoonCompany(),
];
}
}
use Illuminate\Database\Seeder;
class CompanySeeder extends Seeder
{
public function run(): void
{
foreach (range(1, 10) as $ignored) {
Company::create([
'name' => fake()->cartoonCompany(),
]);
}
}
}
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.