'array', ]; protected $guarded = []; public function import(): BelongsTo { return $this->belongsTo(app(Import::class)::class); } public function prunable(): Builder { return static::where( 'created_at', '<=', now()->subMonth(), ); } }