You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
545 B
24 lines
545 B
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\Hash;
|
|
|
|
class ServiciosSeeder extends Seeder
|
|
{
|
|
public function run(): void
|
|
{
|
|
User::updateOrCreate(
|
|
[ 'email' => 'jorge@jorge.com' ],
|
|
[
|
|
'name' => 'Jorge',
|
|
'apellido' => 'Servicios',
|
|
'telefono' => '1234567890',
|
|
'password' => Hash::make('servicios123'),
|
|
'rol' => 'servicios',
|
|
]
|
|
);
|
|
}
|
|
}
|
|
|