mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-06-25 16:04:37 -05:00
Implemented Custom Auth Framework
Rebuilt member authorization and session handling within Laravel's envirnoment. Sticking with bcrypt encryption for passwords to make the transistion simple.
This commit is contained in:
@ -2,6 +2,7 @@
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use App\Models\Location;
|
||||
|
||||
class FrontIndexController extends Controller
|
||||
@ -11,6 +12,10 @@ class FrontIndexController extends Controller
|
||||
$locations = Location::all();
|
||||
$count = count($locations);
|
||||
|
||||
$terms = "no|agenda";
|
||||
|
||||
//$result = DB::select("SELECT * FROM searchlocations('$terms')");
|
||||
|
||||
return view('front.index', ['count' => $count]);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user