Skip to content

Instantly share code, notes, and snippets.

@dillingham
Created September 26, 2018 17:00
Show Gist options
  • Save dillingham/78024093fd545a16ba53c31b07589988 to your computer and use it in GitHub Desktop.
Save dillingham/78024093fd545a16ba53c31b07589988 to your computer and use it in GitHub Desktop.
latest of BelongsToMany

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment