26 lines
492 B
PHP
26 lines
492 B
PHP
|
<?php
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use League\Csv\Reader;
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
use Illuminate\Support\Facades\DB;
|
||
|
use Log;
|
||
|
|
||
|
class Subpedido extends Model
|
||
|
{
|
||
|
public $timestamps = false;
|
||
|
protected $fillable = ['grupo_de_compra_id', 'aprobado', 'nombre'];
|
||
|
|
||
|
public function productos()
|
||
|
{
|
||
|
return $this->belongsToMany('App\Producto','pedidos_productos')->withPivot(["cantidad"]);
|
||
|
}
|
||
|
|
||
|
public function grupoDeCompra()
|
||
|
{
|
||
|
return $this->belongsTo('App\GrupoDeCompra');
|
||
|
}
|
||
|
|
||
|
}
|