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.
		
		
		
		
		
			
		
			
				
					
					
						
							22 lines
						
					
					
						
							488 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							22 lines
						
					
					
						
							488 B
						
					
					
				
								<?php
							 | 
						|
								
							 | 
						|
								namespace Database\Seeders;
							 | 
						|
								
							 | 
						|
								use Illuminate\Database\Seeder;
							 | 
						|
								use App\Models\User;
							 | 
						|
								use Illuminate\Support\Facades\Hash;
							 | 
						|
								
							 | 
						|
								class ProfesorSeeder extends Seeder
							 | 
						|
								{
							 | 
						|
								    public function run(): void
							 | 
						|
								    {
							 | 
						|
								        User::create([
							 | 
						|
								            'name' => 'Profesor',
							 | 
						|
								            'email' => 'profesor@profesor.com',
							 | 
						|
								            'password' => Hash::make('12345678'),
							 | 
						|
								            'rol' => 'profesor',
							 | 
						|
								            'apellido' => 'Ejemplo',
							 | 
						|
								            'telefono' => '1234567890',
							 | 
						|
								        ]);
							 | 
						|
								    }
							 | 
						|
								} 
							 |