Compare commits

...

2 Commits

Author SHA1 Message Date
27956146e3 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
2024-05-23 23:28:42 +10:00
a547e29e56 Sometimes errors have URLs, so enable them to be resolved 2024-05-23 22:38:03 +10:00
4 changed files with 7 additions and 5 deletions

View File

@ -118,7 +118,7 @@ class DomainController extends Controller
if (! $o->public && ! Gate::check('admin',$o))
abort(404);
$o->load(['zones.system','zones.domain','zones.addresses.nodes_hub']);
$o->load(['zones.system','zones.domain','zones.addresses.nodes_hub','zones.addresses.echomail_from']);
return view('domain.view')
->with('o',$o);

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);
}
/**

View File

@ -126,7 +126,7 @@
<th>Sysop</th>
<th>Location</th>
<th>Address</th>
<th>Last Seen</th>
<th>Last Echomail</th>
</tr>
</thead>
@ -138,7 +138,7 @@
<td>{{ $ao->system->sysop }}</td>
<td>{{ $ao->system->location }}</td>
<td>{{ $ao->ftn4d }}</td>
<td>{{ $ao->system->last_session ? $ao->system->last_session->format('Y-m-d H:i') : '-' }}</td>
<td>{{ $ao->echomail_from->count() ? $ao->echomail_from->first()->datetime->format('Y-m-d H:i') : '-' }}</td>
</tr>
@endforeach
@endforeach

View File

@ -4,7 +4,7 @@
There were errors with the submission.
<ul>
@foreach($errors->all() as $error)
<li>{{ $error }}</li>
<li>{!! $error !!}</li>
@endforeach
</ul>
</span>