You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
373 B
PHTML
20 lines
373 B
PHTML
9 months ago
|
<?php
|
||
|
|
||
|
namespace Database\Seeders;
|
||
|
|
||
|
use App\Models\User;
|
||
|
use Illuminate\Database\Seeder;
|
||
|
use Illuminate\Support\Facades\Hash;
|
||
|
|
||
|
class UserSeeder extends Seeder
|
||
|
{
|
||
|
public function run(): void
|
||
|
{
|
||
|
User::create([
|
||
|
'name' => 'Niisse',
|
||
|
'email' => 'nisselommerde@gmail.com',
|
||
|
'password' => Hash::make("Password")
|
||
|
]);
|
||
|
}
|
||
|
}
|