관리-도구
편집 파일: SetStoreSessionConfig.php
<?php namespace App\Http\Middleware; use Closure; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Session; use Illuminate\Support\Facades\Config; class SetStoreSessionConfig { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { // Set the session configuration for the store module Config::set('session', config('session.store')); // Start the session Session::start(); // Set the default guard to 'store' Auth::setDefaultDriver('store'); return $next($request); } }