Looking to hire Laravel developers? Try LaraJobs

laravel-factorize maintained by smousss

Description
Effortlessly generate Laravel factories for all your models using GPT-4!
Last update
2023/04/24 14:01 (dev-main)
License
Downloads
767

Comments
comments powered by Disqus

Factorize

Magically add missing Model Factories

Latest Version on Packagist GitHub Tests Action Status Total Downloads

Smousss generates missing Model Factories to help you create fake data seeders and write tests at ease. A dream came true for developers inheriting legacy codebases.

namespace Database\Factories;

use …

class ThreadFactory extends Factory
{
    public function definition()
    {
        return [
            'title' => fake()->sentence(),
            'slug' => fake()->slug(),
            'content' => fake()->paragraph(),
        ];
    }

    public function withUser(): static
    {
        return $this->state(function () {
            return [
                'user_id' => User::factory(),
            ];
        });
    }

    …
}

Installation

Install the package via Composer:

composer require smousss/laravel-factorize

Publish the config file:

php artisan vendor:publish --tag=factorize-config

Usage

  1. First, generate a secret key on smousss.com.
  2. Add it to your SMOUSSS_SECRET_KEY environment variable.
  3. Then, create a factory for your Post model: php artisan smousss:factorize App\\Models\\Post. Or for multiple models: php artisan smousss:factorize App\\Models\\Post App\\Models\\Comment

Credit

Factorize for Laravel has been developed by Benjamin Crozat for Smousss (Twitter).

License

MIT