Created
April 16, 2020 22:26
-
-
Save ricardoaugusto/5f9e8c230b4f31f490ad4b91235d4aa1 to your computer and use it in GitHub Desktop.
Laravel belongsToMany explanation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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