forked from projects/thebadspace
14af284103
Rebuilt member authorization and session handling within Laravel's envirnoment. Sticking with bcrypt encryption for passwords to make the transistion simple.
17 lines
311 B
PHP
17 lines
311 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class DenController extends Controller
|
|
{
|
|
//
|
|
public function start(Request $request)
|
|
{
|
|
$member = Auth::user();
|
|
return view('back.start', ['handle' => $member->handle]);
|
|
}
|
|
}
|