Skip to content

Instantly share code, notes, and snippets.

@raksit31667
Created May 2, 2024 16:18
Show Gist options
  • Save raksit31667/7a2f6143f7688dbc529542960f25fa56 to your computer and use it in GitHub Desktop.
Save raksit31667/7a2f6143f7688dbc529542960f25fa56 to your computer and use it in GitHub Desktop.
<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Account>
*/
class AccountFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
'account_no' => fake()->name()
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment