Cambio de nombre
This commit is contained in:
parent
a52dce2b37
commit
5f13f59e0e
|
@ -1,34 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace Database\Seeders;
|
|
||||||
|
|
||||||
use Illuminate\Support\Facades\Date;
|
|
||||||
use Illuminate\Support\Facades\DB;
|
|
||||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
||||||
use Illuminate\Database\Seeder;
|
|
||||||
use App\Models\Region;
|
|
||||||
use App\Models\Barrio;
|
|
||||||
use App\Models\Producto;
|
|
||||||
use App\Models\Categoria;
|
|
||||||
|
|
||||||
class BonoBarrialSeeder extends Seeder
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Run the database seeds.
|
|
||||||
*/
|
|
||||||
public function run(): void
|
|
||||||
{
|
|
||||||
Producto::create([
|
|
||||||
'nombre' => 'Bono barrial',
|
|
||||||
'precio' => 20,
|
|
||||||
'solidario' => false,
|
|
||||||
'bono' => true,
|
|
||||||
'categoria_id' => Categoria::firstOrCreate([
|
|
||||||
'nombre' => 'TRANSPORTE, BONOS Y FINANCIAMIENTO SORORO'
|
|
||||||
])->id,
|
|
||||||
'barrio_id' => Barrio::firstOrCreate([
|
|
||||||
'nombre'=>'PRUEBA'
|
|
||||||
])->id,
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -18,7 +18,7 @@ public function run(): void
|
||||||
CaracteristicaSeeder::class,
|
CaracteristicaSeeder::class,
|
||||||
CanastaSeeder::class,
|
CanastaSeeder::class,
|
||||||
BarrioSeeder::class,
|
BarrioSeeder::class,
|
||||||
BonoBarrialSeeder::class,
|
TestDataSeeder::class,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Database\Seeders;
|
||||||
|
|
||||||
|
use Illuminate\Support\Facades\Date;
|
||||||
|
use Illuminate\Support\Facades\DB;
|
||||||
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||||
|
use Illuminate\Database\Seeder;
|
||||||
|
use App\Models\Region;
|
||||||
|
use App\Models\Barrio;
|
||||||
|
use App\Models\Producto;
|
||||||
|
use App\Models\Categoria;
|
||||||
|
|
||||||
|
class TestDataSeeder extends Seeder
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the database seeds.
|
||||||
|
*/
|
||||||
|
public function run(): void
|
||||||
|
{
|
||||||
|
$barrioPrueba = Barrio::find(1);
|
||||||
|
$productoBarrial = $barrioPrueba->productos()->create([
|
||||||
|
'nombre' => 'Producto Barrial',
|
||||||
|
'precio' => 100,
|
||||||
|
'solidario' => true,
|
||||||
|
'bono' => true,
|
||||||
|
'barrial' => true,
|
||||||
|
'categoria_id' => Categoria::firstOrCreate([
|
||||||
|
'nombre' => 'PRODUCTOS BARRIALES'
|
||||||
|
])->id
|
||||||
|
]);
|
||||||
|
$pedido = $barrioPrueba->crearPedido("Pedido de prueba");
|
||||||
|
$pedido->agregarProducto($productoBarrial, 2);
|
||||||
|
$pedido->agregarProducto(Producto::find(1), 1);
|
||||||
|
$segundoPedido = $barrioPrueba->crearPedido("Segunda prueba");
|
||||||
|
$segundoPedido->agregarProducto($productoBarrial, 5);
|
||||||
|
$tercerPedido = $barrioPrueba->crearPedido("Tercera prueba");
|
||||||
|
$tercerPedido->agregarProducto($productoBarrial, 3);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue