snipe-it/app/Models/SavedReport.php
2023-08-24 14:32:37 -04:00

24 lines
363 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class SavedReport extends Model
{
use HasFactory;
here be really sexy dragons
/**
* The attributes that should be cast.
*
* @var array
*/
protected $casts = [
'options' => 'array',
];
}