53 lines
1.5 KiB
PHP
53 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
class PersonaSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
$personas = [[
|
|
'dni' => '40563707',
|
|
'nombre' => 'Camila Rosario',
|
|
'apellido' => 'Belini',
|
|
'cuil' => '27405637077',
|
|
'fechanac' => '1997-08-21',
|
|
'foto_id' => 1,
|
|
],
|
|
[
|
|
'dni' => '43293244',
|
|
'nombre' => 'Luciano Luca',
|
|
'apellido' => 'Belini',
|
|
'cuil' => '20432932444',
|
|
'fechanac' => '2001-04-05',
|
|
'foto_id' => 1,
|
|
],
|
|
[
|
|
'dni' => '40987654',
|
|
'nombre' => 'Cliente',
|
|
'apellido' => 'Ficticio',
|
|
'cuil' => '20409876544',
|
|
'fechanac' => '2000-01-01',
|
|
'foto_id' => 1,
|
|
]];
|
|
foreach($personas as $persona){
|
|
DB::table('personas')->insert([
|
|
'dni' => $persona['dni'],
|
|
'nombre' => $persona['nombre'],
|
|
'apellido' => $persona['apellido'],
|
|
'cuil' => $persona['cuil'],
|
|
'fechanac' => $persona['fechanac'],
|
|
'foto_id' => $persona['foto_id'],
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]);
|
|
}
|
|
}
|
|
}
|