Files
stradaautopartes/database/seeders/EstadoVentaSeeder.php
Guillermo Gutierrez 994709a3e5 version 1.0
2023-08-11 11:08:47 -07:00

38 lines
879 B
PHP

<?php
namespace Database\Seeders;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\DB;
class EstadoVentaSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
//
DB::table('estado_ventas')->insert([
[
'nombre' => 'Venta',
'created_at' => Carbon::now(),
'updated_at' => Carbon::now()
],
[
'nombre' => 'Abono',
'created_at' => Carbon::now(),
'updated_at' => Carbon::now()
],
[
'nombre' => 'Cancelacion',
'created_at' => Carbon::now(),
'updated_at' => Carbon::now()
],
]);
}
}