<?php | |
public function login (Request $request) { | |
$client = \DB::table('oauth_clients') | |
->where('password_client', '=', true) | |
->first(); | |
// more login logci | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment