From ee3e01d8b9d974452839d1d4420b750939e45a5b Mon Sep 17 00:00:00 2001 From: Lizandro Guarnizo <77708265+lizandrogd@users.noreply.github.com> Date: Sun, 10 Mar 2024 18:29:44 -0500 Subject: [PATCH 1/2] update show usuarios --- app/Http/Livewire/ShowUsuarios.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Livewire/ShowUsuarios.php b/app/Http/Livewire/ShowUsuarios.php index 703afb8..92f5abe 100755 --- a/app/Http/Livewire/ShowUsuarios.php +++ b/app/Http/Livewire/ShowUsuarios.php @@ -52,7 +52,7 @@ class ShowUsuarios extends Component public $modalSaldo = false; public $saldo_actual; public $nuevo_saldo; - public $valor_recargar = 0; + public $valor_recargar; public $user_saldo; public $utilidad = 0; From 9df80142f205a6ec71c3186c7080e57f9265817a Mon Sep 17 00:00:00 2001 From: Lizandro Guarnizo <77708265+lizandrogd@users.noreply.github.com> Date: Mon, 11 Mar 2024 16:44:43 -0500 Subject: [PATCH 2/2] update --- app/Http/Livewire/ShowLogGeneral.php | 2 ++ app/Http/Livewire/ShowLogHistorial.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/app/Http/Livewire/ShowLogGeneral.php b/app/Http/Livewire/ShowLogGeneral.php index 1465880..d876c42 100755 --- a/app/Http/Livewire/ShowLogGeneral.php +++ b/app/Http/Livewire/ShowLogGeneral.php @@ -4,9 +4,11 @@ namespace App\Http\Livewire; use App\Models\Log_general; use Livewire\Component; +use Livewire\WithPagination; class ShowLogGeneral extends Component { + use WithPagination; public $entradas; public $buscar; diff --git a/app/Http/Livewire/ShowLogHistorial.php b/app/Http/Livewire/ShowLogHistorial.php index 5c8bd7a..0a87003 100644 --- a/app/Http/Livewire/ShowLogHistorial.php +++ b/app/Http/Livewire/ShowLogHistorial.php @@ -6,9 +6,11 @@ use App\Models\Log_general; use App\Models\Log_historial; use App\Models\User; use Livewire\Component; +use Livewire\WithPagination; class ShowLogHistorial extends Component { + use WithPagination; public $entradas; public $buscar;