mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-09 20:52:56 +01:00
23 lines
288 B
PHP
23 lines
288 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
/**
|
|
* Class Scheduled Report
|
|
*/
|
|
class ScheduledReport extends EntityModel
|
|
{
|
|
use SoftDeletes;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'frequency',
|
|
'config',
|
|
];
|
|
|
|
}
|