<?php

namespace App\Models\Sales;

use Illuminate\Database\Eloquent\Model;
use OwenIt\Auditing\Contracts\Auditable;
use OwenIt\Auditing\Auditable as AuditableTrait;

class ReportData extends Model implements Auditable
{
	use AuditableTrait;
    protected $table='report_data';
    protected $primaryKey = 'id';
    protected $fillable = ['report_name_timestamp','status'];
    
}
