Skip to content

Instantly share code, notes, and snippets.

@tobyjoiner
Last active September 12, 2022 18:31
Show Gist options
  • Save tobyjoiner/4648961a4f5521f16a97434f5cbf50ea to your computer and use it in GitHub Desktop.
Save tobyjoiner/4648961a4f5521f16a97434f5cbf50ea to your computer and use it in GitHub Desktop.
public function getSalesmanTerritory()
{
return
$this->salesman->fname .
' ' .
$this->salesman->lname .
' ' .
$this->territory->name;
}
public function salesman()
{
return this->belongsTo(Salesman::class);
}
public function territory()
{
return this->belongsTo(Territory::class);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment