Files
vito/database/factories/ServerLogFactory.php
Saeed Vaziry 131b828807 Plugins base (#613)
* wip

* wip

* cleanup

* notification channels

* phpstan

* services

* remove server types

* refactoring

* refactoring
2025-06-14 14:35:18 +02:00

24 lines
426 B
PHP

<?php
namespace Database\Factories;
use App\Models\ServerLog;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends Factory<ServerLog>
*/
class ServerLogFactory extends Factory
{
protected $model = ServerLog::class;
public function definition(): array
{
return [
'type' => 'test-log',
'name' => 'test.log',
'disk' => 'server-logs',
];
}
}