create province tables

This commit is contained in:
2025-07-29 13:45:30 +03:30
parent 21f573e184
commit 3cfe1446e6
18 changed files with 361 additions and 2 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\SystemMessage>
*/
class SystemMessageFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
//
];
}
}