create history for webservice

This commit is contained in:
2025-11-04 15:50:08 +03:30
parent 4ba3636ce8
commit 2761f4891a
12 changed files with 171 additions and 81 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\PanjarehVahedHistory>
*/
class PanjarehVahedHistoryFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
//
];
}
}