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