ForumLab - Community Discussion Platform (Nulled)

ForumLab - Community Discussion Platform (Nulled) 1.2

No permission to download

Oppung code

Active member
May 2, 2022
222
99
43
I already have version 1.2 and I have made it nulled myself.

@Tomz can it be a resource for me. If possible I will share it here.
thank you very much
 

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,060
111,714
120
I already have version 1.2 and I have made it nulled myself.

@Tomz can it be a resource for me. If possible I will share it here.
thank you very much
he purchased too
just drop nulled version here
thanks
 

wolverinejf21

Member
Aug 28, 2019
75
23
8
go to .env, set APP_DEBUG = true
to look eror
  1. *
  2. * @param \Illuminate\Http\Request $request
  3. * @return string|null
  4. */

  5. public function handle($request, Closure $next)
  6. {
  7. if (Auth::check()) {
  8. return $next($request);
  9. }
  10. return redirect()->route('user.login');
 

wolverinejf21

Member
Aug 28, 2019
75
23
8
replace with this

<?php

namespace App\Http\Middleware;

use Illuminate\Auth\Middleware\Authenticate as Middleware;
use Closure;
use Auth;
class Authenticate extends Middleware
{
/**
* Get the path the user should be redirected to when they are not authenticated.
*
* @param \Illuminate\Http\Request $request
* @return string|null
*/

public function handle($request, Closure $next, ...$guards)
{
if (Auth::check()) {
return $next($request);
}
return redirect()->route('user.login');
}



}
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu