Compare commits

..

No commits in common. "27956146e3448a9b8b5ecf9ae5544fd1207d504f" and "de34052c3b8306f8ae2ae428a1eff08175738148" have entirely different histories.

4 changed files with 5 additions and 7 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','zones.addresses.echomail_from']);
$o->load(['zones.system','zones.domain','zones.addresses.nodes_hub']);
return view('domain.view')
->with('o',$o);

View File

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

View File

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