'array', 'estimated_cost' => 'decimal:6', ]; /** * Get the prunable model query. */ public function prunable() { return static::where('created_at', '<=', now()->subMonths(3)); } public function user() { return $this->belongsTo(User::class); } }