Formatting

This commit is contained in:
Marcus Moore 2024-09-17 16:58:49 -07:00
parent 89e2d03a81
commit 6b70443515
No known key found for this signature in database

View file

@ -13,19 +13,14 @@ class ReportTemplate extends Model
use HasFactory; use HasFactory;
use ValidatingTrait; use ValidatingTrait;
/**
* The attributes that should be cast.
*
* @var array
*/
protected $casts = [ protected $casts = [
'options' => 'array', 'options' => 'array',
]; ];
protected $fillable = [ protected $fillable = [
'user_id',
'name', 'name',
'options', 'options',
'user_id',
]; ];
protected $rules = [ protected $rules = [