mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 01:41:36 +00:00
- refactoring architecture - fix incomplete ssh logs - code editor for scripts in the app - remove Jobs and SSHCommands
21 lines
387 B
PHP
21 lines
387 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
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',
|
|
];
|
|
}
|
|
}
|