0
laravel 5.2で、agencies.organization_id = organizations.idを使用して、組織テーブルを持つ外部キーを持つ代理店テーブルを取得するクエリを作成します。今Usersテーブルには、users.organization_id = organizations.idを使用する組織テーブルを持つ外部キーもあります。今どの代理店がusers_idとリンクしているかという代理店のテーブルを取得する方法。laravelの文字列へのコレクション5.2クエリービルダー
public function postagency(Request $request) {
$user_id = $request->user_id;
$org_id = User::where('id', $user_id)->pluck('organization_id')->first();
$postagencies = agency::where('organization_id', $org_id);
echo $postagencies;
}
ありがとうございました.. hasmany()relatioshipをorganization.phpに追加しています... :) –