feat: Inicia a construção do seeder de clientes.

This commit is contained in:
lukibeg 2025-11-10 22:01:50 -03:00
parent 7d867f1140
commit b5d14206c8
1 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,7 @@
namespace Database\Seeders; namespace Database\Seeders;
use App\Models\User; use App\Models\User;
use App\Models\Client;
use Illuminate\Support\Facades\Hash; use Illuminate\Support\Facades\Hash;
// use Illuminate\Database\Console\Seeds\WithoutModelEvents; // use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder; use Illuminate\Database\Seeder;
@ -20,5 +21,7 @@ public function run(): void
'email' => 'inglinesystemsadmin@inglinesystems.com.br', 'email' => 'inglinesystemsadmin@inglinesystems.com.br',
'password' => Hash::make('*Ingline.Sys#9420%SECURITY#') 'password' => Hash::make('*Ingline.Sys#9420%SECURITY#')
]); ]);
Client::factory()->create([]);
} }
} }