TestImageFactory.php 332 B

123456789101112131415161718
  1. <?php
  2. namespace Knuckles\Scribe\Tests\Fixtures;
  3. use Illuminate\Database\Eloquent\Factories\Factory;
  4. class TestImageFactory extends Factory
  5. {
  6. protected $model = TestImage::class;
  7. public function definition(): array
  8. {
  9. return [
  10. 'id' => 1,
  11. 'url' => 'https://test.com',
  12. ];
  13. }
  14. }