feat(pivot): add support for multiple pivot types when using the same accessor

This commit is contained in:
pataar
2024-10-18 16:40:06 +02:00
parent 7956ccb494
commit 0831b7e8e5
4 changed files with 97 additions and 1 deletions
@@ -0,0 +1,11 @@
<?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Pivot\Models\Pivots;
use Illuminate\Database\Eloquent\Relations\Pivot;
class DifferentCustomPivot extends Pivot
{
}