Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
database
/
factories
/
Editing: UserProfileFactory.php
<?php namespace Database\Factories; use App\UserProfile; use Illuminate\Database\Eloquent\Factories\Factory; class UserProfileFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = UserProfile::class; /** * Define the model's default state. * * @return array */ public function definition() { return [ 'country' => $this->faker->country, 'city' => $this->faker->country, 'description' => $this->faker->realText(), ]; } }
Save
Cancel