問題タブ [eloquent-relationship]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
laravel - リレーションシップの結果を where クエリに追加する
誰でも助けてくれますか、私はアイデアがありません。
私はこのコードを持っています:
このクエリの入れ方を知っている人はいますか:
では、データベース クエリは 1 つしか持てないのでしょうか?
ありがとう
laravel - laravelの多くのリレーションに属してデータベースにレコードを保存する方法
restaurant_location
、cuisine_restaurant_location
および料理の3 つのテーブルがあります。
私の料理テーブルにはすべての料理のリストがあります。レストランの詳細はすべて、restaurant_location テーブルにあります。レストランには多くの料理が含まれている可能性があるため、テーブル「cuisine_restaurant_location」を作成しました。このテーブルには、cuisine_id と restaurant_id の 2 つの列があります。私は、restaurant_location モデルで「複数に属する」関係を作成しました。
restaurant_location モデル
レストランのすべての詳細と料理が追加されるはずのフォームがあります。現在、レストランの詳細をすべて追加しています。問題は、「cuisine_restaurant_location」に料理をどのように挿入できるかです。
コントローラ