Files
backend/app/Models/ReportSummary.php
2024-02-01 09:53:53 +00:00

17 lines
267 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ReportSummary extends Model
{
protected $guarded = ['id'];
protected $table = 'rms_reports_summary';
protected $casts = [
'data' => 'array',
];
}