vito/database/factories/DeploymentFactory.php
Saeed Vaziry 5c72f12490 init
2023-07-02 12:47:50 +02:00

19 lines
300 B
PHP
Executable File

<?php
namespace Database\Factories;
use App\Models\Deployment;
use Illuminate\Database\Eloquent\Factories\Factory;
class DeploymentFactory extends Factory
{
protected $model = Deployment::class;
public function definition(): array
{
return [
//
];
}
}