mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 11:12:43 +01:00
13 lines
280 B
PHP
13 lines
280 B
PHP
|
<?php
|
||
|
|
||
|
use App\DataMapper\ClientSettings;
|
||
|
use App\DataMapper\CompanySettings;
|
||
|
use Faker\Generator as Faker;
|
||
|
|
||
|
$factory->define(App\Models\Project::class, function (Faker $faker) {
|
||
|
return [
|
||
|
'name' => $faker->name(),
|
||
|
'description' => $faker->text(50),
|
||
|
];
|
||
|
});
|