31 lines
729 B
PHP
31 lines
729 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 EstadoCajaMovimientoSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
DB::table('estado_caja_movimientos')->insert([
|
|
[
|
|
'nombre' => 'Caja Inicial',
|
|
'created_at' => Carbon::now(),
|
|
'updated_at' => Carbon::now()
|
|
],
|
|
[
|
|
'nombre' => 'Retiro',
|
|
'created_at' => Carbon::now(),
|
|
'updated_at' => Carbon::now()
|
|
],
|
|
]);
|
|
}
|
|
}
|