WebErpMesv2 icon indicating copy to clipboard operation
WebErpMesv2 copied to clipboard

[UI] Workshop interface

Open SMEWebify opened this issue 10 months ago • 1 comments

SMEWebify avatar Apr 03 '24 22:04 SMEWebify

class AuthenticatedSessionController extends Controller
{
    /**
     * Display the login view.
     *
     * @return \Illuminate\View\View
     */
    public function create()
    {
        return view('auth.login');
    }

    /**
     * Handle an incoming authentication request.
     *
     * @param  \App\Http\Requests\Auth\LoginRequest  $request
     * @return \Illuminate\Http\RedirectResponse
     */
    public function store(LoginRequest $request)
    {
        $request->authenticate();

        $request->session()->regenerate();

        return redirect()->intended(RouteServiceProvider::HOME);
    }
class RouteServiceProvider extends ServiceProvider
{
    /**
     * The path to the "home" route for your application.
     *
     * This is used by Laravel authentication to redirect users after login.
     *
     * @var string
     */
    public const HOME = '/dashboard';

SMEWebify avatar Apr 04 '24 20:04 SMEWebify