Skip to content

Instantly share code, notes, and snippets.

@ricardoaugusto
Created April 16, 2020 22:26
Show Gist options
  • Save ricardoaugusto/5f9e8c230b4f31f490ad4b91235d4aa1 to your computer and use it in GitHub Desktop.
Save ricardoaugusto/5f9e8c230b4f31f490ad4b91235d4aa1 to your computer and use it in GitHub Desktop.
Laravel belongsToMany explanation
class Current extends Model
{
public function final()
{
$this->belongsToMany(
'pivot_model',
'pivot_table',
'current_id',
'final_ID'
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment