Se modifica token de reset-password

This commit is contained in:
2026-03-12 13:33:32 -06:00
parent 7c1374f4a1
commit 46a0f8b1c3
4 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ namespace App\Http\Controllers;
use App\Models\Area;
use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
use Spatie\Permission\Models\Role;
use App\Models\Role;
class AreaController extends Controller
{
+1 -1
View File
@@ -10,7 +10,7 @@ use Illuminate\Routing\Controller;
use Illuminate\Support\Facades\Password;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Str;
use Spatie\Permission\Models\Role;
use App\Models\Role;
use Illuminate\Auth\Notifications\ResetPassword;
class UserController extends Controller
+5 -3
View File
@@ -255,9 +255,11 @@ class DataProspecto extends Component
$q->where('plantels.id', $this->pplantels)
)->get();
$this->planesPago = Plane::whereHas('planPlantel', function ($q) {
$q->where('plantels.id', $this->pplantels);
})->get();
$this->planesPago = Plane::where('nivel', $this->selectedNivel)
->whereHas('planPlantel', function ($q) {
$q->where('plantels.id', $this->pplantels);
})
->get();
$this->conceptosNombres = Concepto::where('tipo','=','3' )->get();