Carga inicial
This commit is contained in:
58
database/seeds/CatMotivosEstatusUpdateSeeder.php
Normal file
58
database/seeds/CatMotivosEstatusUpdateSeeder.php
Normal file
@@ -0,0 +1,58 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Carbon\Carbon;
|
||||
|
||||
class CatMotivosEstatusUpdateSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
DB::table('cat_motivos_estatus')->insert([
|
||||
[
|
||||
'nombre' => 'Cliente canceló',
|
||||
'created_at' => Carbon::now()->toDateTimeString(),
|
||||
'updated_at' => Carbon::now()->toDateTimeString()
|
||||
],
|
||||
[
|
||||
'nombre' => 'Cliente no se encuentra',
|
||||
'created_at' => Carbon::now()->toDateTimeString(),
|
||||
'updated_at' => Carbon::now()->toDateTimeString()
|
||||
],
|
||||
[
|
||||
'nombre' => 'Cliente resolvió',
|
||||
'created_at' => Carbon::now()->toDateTimeString(),
|
||||
'updated_at' => Carbon::now()->toDateTimeString()
|
||||
],
|
||||
[
|
||||
'nombre' => 'Negocio cerrado',
|
||||
'created_at' => Carbon::now()->toDateTimeString(),
|
||||
'updated_at' => Carbon::now()->toDateTimeString()
|
||||
],
|
||||
[
|
||||
'nombre' => 'Cliente reprogramó',
|
||||
'created_at' => Carbon::now()->toDateTimeString(),
|
||||
'updated_at' => Carbon::now()->toDateTimeString()
|
||||
],
|
||||
[
|
||||
'nombre' => 'Tubería con raíces',
|
||||
'created_at' => Carbon::now()->toDateTimeString(),
|
||||
'updated_at' => Carbon::now()->toDateTimeString()
|
||||
],
|
||||
[
|
||||
'nombre' => 'Requiere succión',
|
||||
'created_at' => Carbon::now()->toDateTimeString(),
|
||||
'updated_at' => Carbon::now()->toDateTimeString()
|
||||
],
|
||||
[
|
||||
'nombre' => 'Domicilio no localizado',
|
||||
'created_at' => Carbon::now()->toDateTimeString(),
|
||||
'updated_at' => Carbon::now()->toDateTimeString()
|
||||
]
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user