From 48e1a04baec14f4bd8056d094ba5d5955f554289 Mon Sep 17 00:00:00 2001 From: ale Date: Tue, 27 Aug 2024 20:56:27 -0300 Subject: [PATCH] =?UTF-8?q?Borrado=20m=C3=A9todo=20no=20usado?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Producto.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/app/Producto.php b/app/Producto.php index a37d16a..3474063 100644 --- a/app/Producto.php +++ b/app/Producto.php @@ -16,7 +16,7 @@ class Producto extends Model { return $this->belongsToMany('App\Subpedido','productos_subpedidos')->withPivot(["cantidad"]); } - + public function proveedor() { return $this->belongsTo('App\Proveedor'); @@ -33,10 +33,6 @@ class Producto extends Model return $request->has('paginar') && intval($request->input('paginar')) ? intval($request->input('paginar')) : self::$paginarPorDefecto; } - public static function productosIDFila() { - return Producto::pluck('fila', 'id',)->all(); - } - public static function productosFilaID() { return Producto::pluck('id', 'fila',)->all(); } @@ -44,5 +40,5 @@ class Producto extends Model public static function productosIDNombre() { return Producto::pluck('nombre', 'id',)->all(); } - + }