18
common/Workspaces/WorkspaceFactory.php
Executable file
18
common/Workspaces/WorkspaceFactory.php
Executable file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace Common\Workspaces;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
class WorkspaceFactory extends Factory
|
||||
{
|
||||
protected $model = Workspace::class;
|
||||
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
'name' => $this->faker->words(2, true),
|
||||
'owner_id' => $this->faker->numberBetween(1, 100),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user