Project model
public function statuses()
{
return $this->belongsToMany('App\Status');
}
public function status()
{
return $this->statuses()->latest()->limit(1);
}
Project Resource
BelongsTo::make('Status', 'status', 'App\Nova\Status'),
^ Shows last status