| Path : /var/www/html/sistemas/archivodigital/database/factories/ |
| Current File : /var/www/html/sistemas/archivodigital/database/factories/CommentFactory.php |
<?php
namespace Database\Factories;
use App\Models\Comment;
use Illuminate\Database\Eloquent\Factories\Factory;
class CommentFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Comment::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
//
];
}
}