medialibrary-helper/tests/workbench/app/Models/User.php

18 lines
298 B
PHP
Raw Normal View History

2024-01-03 13:07:03 +01:00
<?php
namespace Workbench\App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use HasFactory;
public $guarded = [];
2024-01-03 13:42:29 +01:00
public $casts = [
'policies' => 'json',
];
2024-01-03 13:07:03 +01:00
}