From 0239dd34937f381e0e3bc56df76d49a65259f4a6 Mon Sep 17 00:00:00 2001 From: lizandrogd <77708265+lizandrogd@users.noreply.github.com> Date: Tue, 8 Jul 2025 10:02:46 -0500 Subject: [PATCH] Update ShowPlanes.php --- app/Http/Livewire/ShowPlanes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Livewire/ShowPlanes.php b/app/Http/Livewire/ShowPlanes.php index 2c2b37f..b71d6a2 100755 --- a/app/Http/Livewire/ShowPlanes.php +++ b/app/Http/Livewire/ShowPlanes.php @@ -190,7 +190,7 @@ class ShowPlanes extends Component return view('livewire.show-planes', [ 'cuentas' => $consulta_cuentas, 'servicios' => Servicio::where('estado', 'activo')->get(), - 'roles' => Role::get() + 'roles' => Role::where('subvendedor_id', null)->get() ]); }