2020-01-21 10:22:10 +01:00
|
|
|
<?php
|
2020-10-01 07:33:38 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
2020-01-21 10:22:10 +01:00
|
|
|
|
|
|
|
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),
|
|
|
|
];
|
|
|
|
});
|