mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2025-12-14 06:36:46 +00:00
13 lines
134 B
PHP
13 lines
134 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Profile extends Model
|
|
{
|
|
|
|
protected $guarded = [];
|
|
|
|
}
|