繁体   English   中英

如何在 Laravel 5.8 中基于多对多关系查找数据

[英]How to find data based on Many To Many relationship in Laravel 5.8

我在用户模型和钱包模型之间有一个多对多的关系:

Wallet.php :

public function users()
    {
        return $this->belongsToMany(User::class);
    }

User.php

public function wallets()
    {
        return $this->belongsToMany(Wallet::class);
    }

我有这三个与钱包相关的表格:

桌上wallets

public function up()
    {
        Schema::create('wallets', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->string('title');
            $table->string('name')->unique();
            $table->tinyInteger('is_active');
            $table->tinyInteger('is_cachable');
            $table->timestamps();
        });
    }

user_wallet

public function up()
    {
        Schema::create('user_wallet', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->unsignedBigInteger('user_id');
            $table->foreign('user_id')->references('usr_id')->on('users');
            $table->unsignedBigInteger('wallet_id');
            $table->foreign('wallet_id')->references('id')->on('wallets');
            $table->integer('balance');
            $table->timestamps();
        });
    }

和表user_wallet_transactions

public function up()
    {
        Schema::create('user_wallet_transactions', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->unsignedBigInteger('user_id');
            $table->foreign('user_id')->references('usr_id')->on('users');
            $table->unsignedBigInteger('wallet_id');
            $table->foreign('wallet_id')->references('id')->on('wallets');
            $table->string('amount');
            $table->string('description');
            $table->timestamps();
        });
    }

现在我需要显示单个用户的钱包。 因此,在users.index Blade 中,我添加了以下内容:

<a href="{{ route('user.wallet', $user->usr_id) }}" class="fa fa-wallet text-dark"></a>

并将用户数据发送到控制器,如下所示:

public function index(User $user)
    {
        // retrieve user_wallet information
        return view('admin.wallets.user.index', compact(['user']));
    }

但我不知道如何在此方法中检索user_wallet信息。

那么在这种情况下如何从user_wallet获取数据。

我真的很感激你们对此的任何想法或建议......

提前致谢。

一种方法是接受param$id

public function index($id)

然后

User::with('wallets')->has('wallets')->find($id);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM