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

Magically add missing Model Factories
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
- First, generate a secret key on smousss.com.
- Add it to your
SMOUSSS_SECRET_KEYenvironment variable. - 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).