如何根据 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);
    }

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

Table 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();
        });
    }

Table 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();
        });
    }

和table 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);