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

22 lines
416 B
PHP

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