Relation Manager and filter

In my relation manager table I want to show users who belong to horses. How can I filter that in relation manager.
Schema::create('horses', function (Blueprint $table) {
    $table->id();
    $table
        ->foreignId('user_id')
        ->constrained()
        ->cascadeOnDelete();
    $table
        ->foreignId('owner_id')
        ->constrained('users', 'id')
        ->cascadeOnDelete();
//
Was this page helpful?