<?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',
];
}