The Tags relation seems to be the same as the Photos in that you could add more content types that would have tags (podcast, book, etc), and polymorphic would remove the need to modify the model (consistent with the open-closed principle from your other course :). After watching this I read the Laravel docs on polymorphic many-to-many and it seemed clear enough.
There's no easy and quick way to answer this, it depends on what other operations you will perform with those users, areas and managers.
In your case, it's a pivot table with additional column, which looks fine.
Hi Povilas, you mentioned that there is a rule of naming convention in laravel.
I've found some of them on laravel.com but, is there any document with all these rules?
I'm really interested in getting a better understanding of these rules, especially those related to variables and model properties.
No, we have not seen a good document with the naming conventions in them. They are just there, but as always - you can go and create whatever you want yourself :)
I created a pivot table that I am not sour I need
The tables are Address Type and Address the addresstype only has one filed name and the Address has the address_type_id, street_address,apt_suit_lot, city,state, and postal_code. Each address has only one type but the addresses hasMany addresstypes
In the pivot table
Schema::create('address_address_type', function (Blueprint $table) { $table->foreignIdFor(Address::class)->constrained(); $table->foreignIdFor(AddressType::class)->constrained(); });
I had to manually put each of the records in to the table Not sour why however This is my first time actually using a pivot table on my own so one of my questions is how to get the pivot table to automatically fill with the data? Besides the Question do I even need it?
Pivot tables fill automatically if you create the record using pivot relationship (many to many). It's impossible to tell what exactly is wrong here since it is just a database migration code.
The Tags relation seems to be the same as the Photos in that you could add more content types that would have tags (podcast, book, etc), and polymorphic would remove the need to modify the model (consistent with the open-closed principle from your other course :). After watching this I read the Laravel docs on polymorphic many-to-many and it seemed clear enough.
Thanks))
Hi Povilas,
I have doubts on creating relationship for this situation.
User has a role ( Front team, Backend team, Manager , Admin )
If user is Front or backend, then they should have any Manager,
i created table like structure Manager_relation user_id, manager_id (userid), type (backend / frontend)
What kind of this relation this ? Is there any other betterway to handlet this ?
Thank you.
There's no easy and quick way to answer this, it depends on what other operations you will perform with those users, areas and managers. In your case, it's a pivot table with additional column, which looks fine.
Hi Povilas, you mentioned that there is a rule of naming convention in laravel. I've found some of them on laravel.com but, is there any document with all these rules? I'm really interested in getting a better understanding of these rules, especially those related to variables and model properties.
Thank you.
No, we have not seen a good document with the naming conventions in them. They are just there, but as always - you can go and create whatever you want yourself :)
I created a pivot table that I am not sour I need The tables are Address Type and Address the addresstype only has one filed name and the Address has the address_type_id, street_address,apt_suit_lot, city,state, and postal_code. Each address has only one type but the addresses hasMany addresstypes In the pivot table
I had to manually put each of the records in to the table Not sour why however This is my first time actually using a pivot table on my own so one of my questions is how to get the pivot table to automatically fill with the data? Besides the Question do I even need it?
Changed the table to
but it still is not getting filled
Pivot tables fill automatically if you create the record using pivot relationship (many to many). It's impossible to tell what exactly is wrong here since it is just a database migration code.