coderello/laravel-populated-factory

An easy way to generate populated factories.
23,047 245
Install
composer require coderello/laravel-populated-factory
Latest Version:1.1.0
PHP:^7.3|^8.0
License:MIT
Last Updated:Nov 18, 2020
Links: GitHub  ·  Packagist
Maintainer: coderello

Install

You can install this package via composer using this command:

composer require --dev coderello/laravel-populated-factory

The package will automatically register itself.

Usage

The only thing you need to do in order to generate a populated factory is to execute this command:

php artisan make:populated-factory User

This command assumes that the User model is in the App namespace. If your models are situated in another namespace (e.g. App\Models) you should specify them either as Models\\User or \\App\\Models\\User.

Here is the populated factory generated for the User model according to its column types & names.

<?php

use Faker\Generator as Faker;

/** @var $factory \Illuminate\Database\Eloquent\Factory */

$factory->define(\App\User::class, function (Faker $faker) {
    return [
        'name' => $faker->name,
        'email' => $faker->unique()->safeEmail,
        'email_verified_at' => $faker->dateTime,
        'password' => '$2y$10$uTDnsRa0h7wLppc8/vB9C.YqsrAZwhjCgLWjcmpbndTmyo1k5tbRC',
        'remember_token' => $faker->sha1,
        'created_at' => $faker->dateTime,
        'updated_at' => $faker->dateTime,
    ];
});

If you want a custom name for the factory, you need to pass it as the second argument like so:

php artisan make:populated-factory User AdminFactory

If you want to override the existent factory, you need to use --force flag like so:

php artisan make:populated-factory User --force

Contributing

Please see CONTRIBUTING for details.

License

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

Related Packages

thedoctor0/laravel-factory-generator

Automatically generate Laravel factories for your models.

1,130,344 213
laravel/dbfactory

A DB Factory wrapper implementation for Eloquent models in the Laravel Framework...

221
rymanalu/factory-generator

Laravel 5 Model Factory Generator.

8,006 17
skovachev/fakefactory

A model factory package for Laravel 4 with expressive API for creating custom ta...

1,121 29
php-http/laravel-httplug

Laravel package to integrate the Httplug generic HTTP client into Laravel

110,120 12