Skip to content

Instantly share code, notes, and snippets.

@EricMcWinNer
Created September 11, 2020 23:39
Show Gist options
  • Save EricMcWinNer/dd9a85135106c7c614df76e11508ae58 to your computer and use it in GitHub Desktop.
Save EricMcWinNer/dd9a85135106c7c614df76e11508ae58 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, 'foreign_key', 'local_key');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment