Laravel how to resolve one to many circular referenceHow does database indexing work?How can I prevent SQL injection in PHP?How do I UPDATE from a SELECT in SQL Server?Reference — What does this symbol mean in PHP?How do I check if a string contains a specific word?How does PHP 'foreach' actually work?Laravel Eloquent many-to-many relationship: Use explicit pivot tableLaravel 5: How to do a join query on a pivot table using Eloquent?Querying data based from id (primary key) on many to many eloquent pivot tableLaravel - avoid pivot table for many-to-many relationship through a custom relation?

Do I need a multiple entry visa for a trip UK -> Sweden -> UK?

How to be diplomatic in refusing to write code that breaches the privacy of our users

Implement the Thanos sorting algorithm

How does it work when somebody invests in my business?

What to do with wrong results in talks?

Is there a problem with hiding "forgot password" until it's needed?

How can I replace every global instance of "x[2]" with "x_2"

Teaching indefinite integrals that require special-casing

Hide Select Output from T-SQL

What will be the benefits of Brexit?

Time travel short story where a man arrives in the late 19th century in a time machine and then sends the machine back into the past

Why are on-board computers allowed to change controls without notifying the pilots?

Is the destination of a commercial flight important for the pilot?

Hostile work environment after whistle-blowing on coworker and our boss. What do I do?

How do I rename a LINUX host without needing to reboot for the rename to take effect?

The baby cries all morning

How to verify if g is a generator for p?

Trouble understanding overseas colleagues

What's the purpose of "true" in bash "if sudo true; then"

Bash method for viewing beginning and end of file

Using parameter substitution on a Bash array

What is the oldest known work of fiction?

Valid Badminton Score?

Curses work by shouting - How to avoid collateral damage?



Laravel how to resolve one to many circular reference


How does database indexing work?How can I prevent SQL injection in PHP?How do I UPDATE from a SELECT in SQL Server?Reference — What does this symbol mean in PHP?How do I check if a string contains a specific word?How does PHP 'foreach' actually work?Laravel Eloquent many-to-many relationship: Use explicit pivot tableLaravel 5: How to do a join query on a pivot table using Eloquent?Querying data based from id (primary key) on many to many eloquent pivot tableLaravel - avoid pivot table for many-to-many relationship through a custom relation?













0















Hello I got a special case where I want to resolve the problem of keywords where a main keyword can reference many secondary keywords like that :
enter image description here



My questions :
1/ Should I make a custom pivot model or simply make a pivot table called keyword_keyword ?
I know that Eloquent can't handle composite keys which could here avoid duplicate couples in KeywordsAssociation.
Thank you for your Help.










share|improve this question






















  • Just change your column names. It looks confusing. There is no circular reference as such. One keyword refers to many others.

    – vivek_23
    Mar 8 at 9:35











  • ok for circular reference, should I simply name the keywordsAssociation keyword_keyword in my migration ?

    – Brian85
    Mar 8 at 9:37











  • First, you will migrate the keywords table. Then you will migrate keywordsAssociation table where mainKeyword and secondarykeyword are foreign keys referring to primary key of keywords table. So, parent table before child.

    – vivek_23
    Mar 8 at 9:40







  • 1





    Yes, in that case, a model for KeywordAssociation is necessary.

    – vivek_23
    Mar 8 at 9:51






  • 1





    Thank you very much !

    – Brian85
    Mar 8 at 9:53















0















Hello I got a special case where I want to resolve the problem of keywords where a main keyword can reference many secondary keywords like that :
enter image description here



My questions :
1/ Should I make a custom pivot model or simply make a pivot table called keyword_keyword ?
I know that Eloquent can't handle composite keys which could here avoid duplicate couples in KeywordsAssociation.
Thank you for your Help.










share|improve this question






















  • Just change your column names. It looks confusing. There is no circular reference as such. One keyword refers to many others.

    – vivek_23
    Mar 8 at 9:35











  • ok for circular reference, should I simply name the keywordsAssociation keyword_keyword in my migration ?

    – Brian85
    Mar 8 at 9:37











  • First, you will migrate the keywords table. Then you will migrate keywordsAssociation table where mainKeyword and secondarykeyword are foreign keys referring to primary key of keywords table. So, parent table before child.

    – vivek_23
    Mar 8 at 9:40







  • 1





    Yes, in that case, a model for KeywordAssociation is necessary.

    – vivek_23
    Mar 8 at 9:51






  • 1





    Thank you very much !

    – Brian85
    Mar 8 at 9:53













0












0








0


0






Hello I got a special case where I want to resolve the problem of keywords where a main keyword can reference many secondary keywords like that :
enter image description here



My questions :
1/ Should I make a custom pivot model or simply make a pivot table called keyword_keyword ?
I know that Eloquent can't handle composite keys which could here avoid duplicate couples in KeywordsAssociation.
Thank you for your Help.










share|improve this question














Hello I got a special case where I want to resolve the problem of keywords where a main keyword can reference many secondary keywords like that :
enter image description here



My questions :
1/ Should I make a custom pivot model or simply make a pivot table called keyword_keyword ?
I know that Eloquent can't handle composite keys which could here avoid duplicate couples in KeywordsAssociation.
Thank you for your Help.







php sql laravel eloquent






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 8 at 9:31









Brian85Brian85

157110




157110












  • Just change your column names. It looks confusing. There is no circular reference as such. One keyword refers to many others.

    – vivek_23
    Mar 8 at 9:35











  • ok for circular reference, should I simply name the keywordsAssociation keyword_keyword in my migration ?

    – Brian85
    Mar 8 at 9:37











  • First, you will migrate the keywords table. Then you will migrate keywordsAssociation table where mainKeyword and secondarykeyword are foreign keys referring to primary key of keywords table. So, parent table before child.

    – vivek_23
    Mar 8 at 9:40







  • 1





    Yes, in that case, a model for KeywordAssociation is necessary.

    – vivek_23
    Mar 8 at 9:51






  • 1





    Thank you very much !

    – Brian85
    Mar 8 at 9:53

















  • Just change your column names. It looks confusing. There is no circular reference as such. One keyword refers to many others.

    – vivek_23
    Mar 8 at 9:35











  • ok for circular reference, should I simply name the keywordsAssociation keyword_keyword in my migration ?

    – Brian85
    Mar 8 at 9:37











  • First, you will migrate the keywords table. Then you will migrate keywordsAssociation table where mainKeyword and secondarykeyword are foreign keys referring to primary key of keywords table. So, parent table before child.

    – vivek_23
    Mar 8 at 9:40







  • 1





    Yes, in that case, a model for KeywordAssociation is necessary.

    – vivek_23
    Mar 8 at 9:51






  • 1





    Thank you very much !

    – Brian85
    Mar 8 at 9:53
















Just change your column names. It looks confusing. There is no circular reference as such. One keyword refers to many others.

– vivek_23
Mar 8 at 9:35





Just change your column names. It looks confusing. There is no circular reference as such. One keyword refers to many others.

– vivek_23
Mar 8 at 9:35













ok for circular reference, should I simply name the keywordsAssociation keyword_keyword in my migration ?

– Brian85
Mar 8 at 9:37





ok for circular reference, should I simply name the keywordsAssociation keyword_keyword in my migration ?

– Brian85
Mar 8 at 9:37













First, you will migrate the keywords table. Then you will migrate keywordsAssociation table where mainKeyword and secondarykeyword are foreign keys referring to primary key of keywords table. So, parent table before child.

– vivek_23
Mar 8 at 9:40






First, you will migrate the keywords table. Then you will migrate keywordsAssociation table where mainKeyword and secondarykeyword are foreign keys referring to primary key of keywords table. So, parent table before child.

– vivek_23
Mar 8 at 9:40





1




1





Yes, in that case, a model for KeywordAssociation is necessary.

– vivek_23
Mar 8 at 9:51





Yes, in that case, a model for KeywordAssociation is necessary.

– vivek_23
Mar 8 at 9:51




1




1





Thank you very much !

– Brian85
Mar 8 at 9:53





Thank you very much !

– Brian85
Mar 8 at 9:53












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55060277%2flaravel-how-to-resolve-one-to-many-circular-reference%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55060277%2flaravel-how-to-resolve-one-to-many-circular-reference%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to get text form Clipboard with JavaScript in Firefox 56?How to validate an email address in JavaScript?How do JavaScript closures work?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How do I copy to the clipboard in JavaScript?How do I include a JavaScript file in another JavaScript file?Get the current URL with JavaScript?How to replace all occurrences of a string in JavaScriptHow to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

List of MPs elected to the English parliament in 1640 (April) Contents List of constituencies and members See also Notes References Navigation menueNational Archives – The Glynde Place ArchivesCobbett's Parliamentary history of England, from the Norman Conquest in 1066 to the year 1803'Aldermen in Parliament', The Aldermen of the City of London: Temp. Henry III – 1912onepage&q&f&#61, false 229