2023-01-13 02:43:38 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
|
|
|
use App\Models\RecurringInvoice;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
|
|
|
|
class SchedulerFactory extends Factory
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Define the model's default state.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function definition()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'name' => $this->faker->name(),
|
2023-02-16 02:36:09 +01:00
|
|
|
'is_paused' => rand(0, 1),
|
|
|
|
'is_deleted' => rand(0, 1),
|
2023-01-13 02:43:38 +01:00
|
|
|
'parameters' => [],
|
|
|
|
'frequency_id' => RecurringInvoice::FREQUENCY_MONTHLY,
|
2023-02-16 02:36:09 +01:00
|
|
|
'next_run' => now()->addSeconds(rand(86400, 8640000)),
|
|
|
|
'next_run_client' => now()->addSeconds(rand(86400, 8640000)),
|
2023-01-18 00:39:01 +01:00
|
|
|
'template' => 'client_statement',
|
2023-01-13 02:43:38 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|