chinleung/laravel-faker-providers

Custom collection of Laravel Faker providers.
12,216
Install
composer require chinleung/laravel-faker-providers
Latest Version:v4.0.0
PHP:^8.2
License:MIT
Last Updated:May 28, 2024
Links: GitHub  ·  Packagist
Maintainer: ChinLeung

Laravel Faker Providers

Latest Version on Packagist Build Status Quality Score Total Downloads

A collection of extra Faker providers.

Installation

You can install the package via composer:

composer require chinleung/laravel-faker-providers --dev

Providers

Note

This is a provider that adds support for true and false values Faker's default optional modifier.

Note

This is a provider for JSON columns of Spatie's Laravel Translatable package.

Methods

translatable(\Closure $callable, array $locales = null) : array

Pass a closure to be executed for every locale.

$faker->translatable(function () use ($faker) {
  return strtolower($faker->word);  
});

Output

['en' => 'laravel', 'fr' => 'php']

translatableName(array $locales = null) : array

Generate a name for every locale.

$faker->translatableName;

Output

['en' => 'John Doe', 'fr' => 'Jane Doe']

Usage

Add the provider that you need to your Faker\Generator instance and simply use a method of the provider:

factory(User::class, function (Faker $faker) {
    $faker->addProvider(new \ChinLeung\LaravelFakerProviders\TranslatableAttributeProvider($faker));
  
    return [
        'name' => $faker->translatableName, // ['en' => 'John Doe', 'fr' => 'Jane Doe']
    ];
});

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email hello@chinleung.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.

Related Packages

chinleung/laravel-locales

Add configurations and helpers for a multi locale application.

244,292 36
chinleung/laravel-nova-optimizer

A package to optimize performance of Laravel Nova classes.

23,175 1
chinleung/laravel-weekday

A wrapper for chinleung/php-weekday.

8,190 0