glastree_on_gitea
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user