Skip to content
Snippets Groups Projects
Commit 6072a55d authored by Dicky Adrian's avatar Dicky Adrian
Browse files

fix '/kelastesis' when not authenticated

parent c8674f16
Branches
No related merge requests found
......@@ -17,6 +17,11 @@ use Illuminate\Support\Facades\Validator;
class KelasTesisController extends Controller
{
public function __construct()
{
$this->middleware('auth');
}
public function showKelasTesis() {
$manajer = Auth::user()->isManajer();
if($manajer) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment