Carga inicial
This commit is contained in:
38
database/seeds/CatMotivosEstatusSeeder.php
Normal file
38
database/seeds/CatMotivosEstatusSeeder.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class CatMotivosEstatusSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
DB::table('cat_motivos_estatus')->insert([
|
||||
[
|
||||
'nombre' => 'Nivel en calle / Pozos de visita llenos',
|
||||
'created_at' => Carbon::now()->toDateTimeString(),
|
||||
'updated_at' => Carbon::now()->toDateTimeString()
|
||||
],
|
||||
[
|
||||
'nombre' => 'Tubería dañada',
|
||||
'created_at' => Carbon::now()->toDateTimeString(),
|
||||
'updated_at' => Carbon::now()->toDateTimeString()
|
||||
],
|
||||
[
|
||||
'nombre' => 'Registros ocultos',
|
||||
'created_at' => Carbon::now()->toDateTimeString(),
|
||||
'updated_at' => Carbon::now()->toDateTimeString()
|
||||
],
|
||||
[
|
||||
'nombre' => 'Registro sellado',
|
||||
'created_at' => Carbon::now()->toDateTimeString(),
|
||||
'updated_at' => Carbon::now()->toDateTimeString()
|
||||
]
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user