mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
21 lines
325 B
PHP
21 lines
325 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\Service;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends Factory<\App\Models\Service>
|
|
*/
|
|
class ServiceFactory extends Factory
|
|
{
|
|
protected $model = Service::class;
|
|
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
];
|
|
}
|
|
}
|