buscar) { $query->where('detalle', 'like', '%' . $this->buscar . '%'); } if ($this->filtro_fecha) { $query->whereDate('created_at', $this->filtro_fecha); } $logs = $query->orderBy('id', 'desc')->paginate($this->entradas); return view('livewire.show-log-general', [ 'logs' => $logs ]); } }