Se modifica token de reset-password
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user