Created
July 25, 2019 13:24
-
-
Save wannymiarelli/9ab0e237c904e9f0d0036445b24d5d4a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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