Se terminó de crear los controladores con los métodos CRUD básicos. Lo siguiente es empezar a programar los métodos especificos de cada controlador

This commit is contained in:
Lucho
2026-03-21 09:53:45 -03:00
parent 7b7d81d5d0
commit 6c2c300d6e
95 changed files with 4010 additions and 61 deletions
+12 -5
View File
@@ -12,10 +12,17 @@ class BajaSeeder extends Seeder
*/
public function run(): void
{
$credencial = [
'dni' => '40987654',
'correo' => 'ficticio@gmail.com',
'persona_id' =>
]
$bajas = [
['motivo' => 'Cliente no responde'],
['motivo' => 'Servicio cancelado'],
];
foreach ($bajas as $baja) {
DB::table('bajas')->insert([
'motivo' => $baja['motivo'],
'created_at' => now(),
'updated_at' => now(),
]);
}
}
}