Skip to content

Instantly share code, notes, and snippets.

@EricMcWinNer
Last active September 11, 2020 14:20
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/fe3c602f975842b0109b46864bcf1d5e to your computer and use it in GitHub Desktop.
Save EricMcWinNer/fe3c602f975842b0109b46864bcf1d5e to your computer and use it in GitHub Desktop.
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PoliticalParty extends Model {
/**
* Get the candidates this party has
*/
public function candidates() {
return $this->hasMany(App\Model\Candidate::class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment