* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0 */ namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use AllowDynamicProperties; /** * App\Models\Apikey. * * @property int $id * @property int $user_id * @property string $content * @property string|null $created_at * @property \Illuminate\Support\Carbon|null $deleted_at */ #[AllowDynamicProperties] final class Apikey extends Model { /** * @var bool */ public $timestamps = false; /** * The attributes that aren't mass assignable. * * @var string[] */ protected $guarded = ['id']; /** * Get the attributes that should be cast. * * @return array{deleted_at: 'datetime'} */ protected function casts(): array { return [ 'deleted_at' => 'datetime', ]; } /** * Get the user that owns the apikey. * * @return BelongsTo */ public function user(): BelongsTo { return $this->belongsTo(User::class); } }