Bulletinboard/database/factories/FileFactory.php

29 lines
481 B
PHP
Raw Permalink Normal View History

2021-02-24 09:01:35 +00:00
<?php
namespace Database\Factories;
use App\Models\File;
use Illuminate\Database\Eloquent\Factories\Factory;
class FileFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = File::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'link' => $this->faker->url
];
}
}