Skip to content

Instantly share code, notes, and snippets.

@EricMcWinNer
Created September 11, 2020 23:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EricMcWinNer/563189eedd28d9b8e0932223238ae792 to your computer and use it in GitHub Desktop.
Save EricMcWinNer/563189eedd28d9b8e0932223238ae792 to your computer and use it in GitHub Desktop.
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Candidate extends Model {
/**
* Gets the political party a candidate belongs to
*/
public function politicalParty() {
return $this->belongsTo(App\Models\PoliticalParty::class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment