Change domain view last seen to show last time an echomail came from that system
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 40s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m43s
Create Docker Image / Final Docker Image Manifest (push) Successful in 11s

This commit is contained in:
2024-05-23 23:28:42 +10:00
parent a547e29e56
commit 27956146e3
3 changed files with 6 additions and 4 deletions

View File

@@ -534,7 +534,9 @@ class Address extends Model
public function echomail_from()
{
return $this->hasMany(Echomail::class,'fftn_id','id');
return $this->hasMany(Echomail::class,'fftn_id','id')
->orderBy('datetime','DESC')
->limit(10);
}
/**