Skip to content

Instantly share code, notes, and snippets.

@EricMcWinNer
Created September 10, 2020 23:57
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/ca94c04f097981e25b684ba6989aaa62 to your computer and use it in GitHub Desktop.
Save EricMcWinNer/ca94c04f097981e25b684ba6989aaa62 to your computer and use it in GitHub Desktop.
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Vote extends Model {
/**
* Get's this vote's owner
*/
public function user() {
return $this->belongsTo(App\Models\User::class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment