glastree_on_gitea

This commit is contained in:
2026-05-26 08:14:29 +02:00
commit 0bed099d05
9556 changed files with 1186307 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class ReportCustom extends Model
{
protected $table = 'report_custom';
protected $fillable = [
'user_id',
'nome',
'descrizione',
'tipo_report',
'config',
];
protected $casts = [
'config' => 'array',
];
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
}