Skip to content

Full Stack Programmer

Just another blog classic, isn't it!

Full Stack Programmer

Just another blog classic, isn't it!

  • Blog
  • Who am i?
  • More About Me
    • Skills
    • Experience
    • Recommendations
    • Education
    • My Activities
  • IT Services
  • Gaming
  • Contact
  • Privacy & Policy
Laravel

Laravel: Login with email or phone

 Danyal  March 18, 2021  Posted in Code snippets, Laravel, PHP, Programming Tagged Authentication, LaravelPassport, login
public function login(Request $request)
{
    $user = User::where('email', $request->emailOrPhone)
                    ->orWhere('phone', $request->emailOrPhone)
                    ->first();
    if($user){
        if (Hash::check($request->password, $user->password)) {

            $tokenResult = $user->createToken('Personal Access Token');
            $token = $tokenResult->token;
            if ($request->remember_me)
                $token->expires_at = Carbon::now()->addWeeks(1);
            $token->save();
            return response()->json([
                'access_token' => $tokenResult->accessToken,
                'expires_at' => Carbon::parse(
                    $tokenResult->token->expires_at
                )->toDateTimeString()
            ]);

        } else {
            $response = ['Password incorrect'];
            return response($response, 422);
        }
    }else {
        $response = ['User does not exist'];
        return response($response, 422);
    }

}
Post Views: 4,578
Author: Danyal
I'm a skilled programmer specializing in Vue.js/Nuxt.js for front-end development and PHP Laravel for back-end solutions. I have a strong focus on API design and development, complemented by experience in web server setup and maintenance. My versatile expertise ensures seamless creation and maintenance of web applications, covering everything from intuitive user interfaces to robust server-side functionality. Passionate about coding and driven by a lifelong learning mindset, I invite you to explore more at danyal.dk.

Post navigation

Build issue with Xcode 12.3 – file not found #include “ruby/config.h” →
← Drupal: How to enable HTTPS support in Drupal

View: LINKEDIN

Posts

  • Understanding Object.assign() in JavaScript May 14, 2026
  • What Is Enumerable? April 1, 2026
  • Screen Size in React Native: Two Approaches November 5, 2025
  • Loading Custom Fonts in a React Native App (with Expo) November 2, 2025
  • Cascading Styles in React Native November 2, 2025

Tags

array (3) Authentication (8) build (3) coding (8) commands (6) components (3) composer (4) database (5) devops (5) docker (3) drupal (5) Eloquent (3) error (5) Git (3) help (3) ios (5) javascript (20) jQuery (3) js (6) laravel (24) Laravel 5.6 (6) laravel5.7 (4) LaravelPassport (3) linux (7) lumen (7) LumenPassport (3) migration (4) mysql (8) network (3) node (3) php (27) python (6) security (4) solution (3) ssh (3) SSL (3) technology (8) tip of the day (3) tips (7) token (3) ubuntu (8) upgrade (3) vue.js (3) vuejs (13) vuex (3)

Advertisement

Advertisement

Categories

  • Apache2 (1)
  • Chrome (1)
  • CI/CD (1)
  • CkEditor (1)
  • Cloud (2)
  • CMS (8)
  • Code Editors (1)
  • Code snippets (1)
  • Composer (1)
  • Daily Tips (6)
  • Databases (5)
  • Development (5)
  • Docker (4)
  • Eloquent (1)
  • EU (1)
  • File System (1)
  • Git (3)
  • Google (2)
  • GraphQL (2)
  • Gulp (1)
  • Heandy Tips (2)
  • javascript (24)
  • JWTAuth (1)
  • Laravel (33)
  • Laravel 5.5 (8)
  • Linux (10)
  • Lumen (6)
  • Microbit (4)
  • MySQL (5)
  • News & Updates (5)
  • Nginx (2)
  • Node (1)
  • Nuxt.js (3)
  • osMac (3)
  • Package Managers (1)
  • PHP (30)
  • Programming (9)
  • Python (3)
  • ReactNative (4)
  • Ruby on Rails (1)
  • Support (1)
  • Symfony (3)
  • Tips (7)
  • Tools (1)
  • Ubuntu (11)
  • Ubuntu 16.04 (10)
  • Ubuntu 17 (6)
  • Uncategorized (8)
  • Vlog (1)
  • Vuejs (11)
  • Wordpress (1)
  • xcode (3)

Recent Posts

  • Understanding Object.assign() in JavaScript
  • What Is Enumerable?
  • Screen Size in React Native: Two Approaches
  • Loading Custom Fonts in a React Native App (with Expo)

Tags

array (3) Authentication (8) build (3) coding (8) commands (6) components (3) composer (4) database (5) devops (5) docker (3) drupal (5) Eloquent (3) error (5) Git (3) help (3) ios (5) javascript (20) jQuery (3) js (6) laravel (24) Laravel 5.6 (6) laravel5.7 (4) LaravelPassport (3) linux (7) lumen (7) LumenPassport (3) migration (4) mysql (8) network (3) node (3) php (27) python (6) security (4) solution (3) ssh (3) SSL (3) technology (8) tip of the day (3) tips (7) token (3) ubuntu (8) upgrade (3) vue.js (3) vuejs (13) vuex (3)

RSS Unknown Feed

RSS Unknown Feed

RSS Laravel News

  • Help make Filament faster!
  • Turn PHP Attributes Into Docs With Signal
  • USAIGE: Track Token Usage and Costs for Laravel AI SDK Requests
  • Laravel WhatsApp: Two Backends Behind One Facade
  • Yammi Audit Log: Track Who Really Made a Change Across Jobs and Queues

RSS Unknown Feed

RSS Abdulsamad.dk

We runs on green energy!

This website is hosted Green - checked by thegreenwebfoundation.org

Copyright © 2026 Full Stack Programmer

Design by ThemesDNA.com

Verified by ExactMetrics