File "ReportJobsCompletedDetailed.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/app/Models/ReportJobsCompletedDetailed.php
File size: 469 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class ReportJobsCompletedDetailed extends Model
{
use HasFactory;
protected $table = 'report_sales';
public const REPORTS_MODE = [
'previous_year' => 'previousYear',
'current_year' => 'currentYear',
'custom' => 'customRange',
'daily' => 'dailyReport',
'weekly' => 'weeklyReport',
];
}