TestPet.php 242 B

1234567891011121314
  1. <?php
  2. namespace Knuckles\Scribe\Tests\Fixtures;
  3. use Illuminate\Database\Eloquent\Model;
  4. class TestPet extends Model
  5. {
  6. public function owners()
  7. {
  8. return $this->belongsToMany(TestUser::class)->withPivot('duration');
  9. }
  10. }