17 lines
267 B
PHP
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',
|
|
];
|
|
|
|
} |