Turn Your Vehicle Into a Smart Earning Asset

While youโ€™re not driving your car or bike, it can still be working for you. MOTOSHARE helps you earn passive income by connecting your vehicle with trusted renters in your city.

๐Ÿš— You set the rental price
๐Ÿ” Secure bookings with verified renters
๐Ÿ“ Track your vehicle with GPS integration
๐Ÿ’ฐ Start earning within 48 hours

Join as a Partner Today

Itโ€™s simple, safe, and rewarding. Your vehicle. Your rules. Your earnings.

Laravel Social Login using Socialite

Installations—- (laravel 5.5)
composer require laravel/socialite “^3.2.0”

configuration—–(config/services.php)

'facebook' => [
'client_id' => env('facebook_CLIENT_ID'), // Your facebook Client ID
'client_secret' => env('facebook_CLIENT_SECRET'), // Your facebook Client Secret
'redirect' => 'http://your-callback-url',
],

(Go—- https://developers.facebook.com)
–> go my app and generate Your new facebook Client ID and our facebook Client Secret ID and change
==> change app domain (localhost) and change Site URL (http://localhost:8000/) and click save button

(CONFIG/APE.PHP)– IN PROVIDERES
Laravel\Socialite\SocialiteServiceProvider::class,
'Socialite' => Laravel\Socialite\Facades\Socialite::class,

( App\Http\Controllers\Auth;)

/**
* Redirect the user to the facebook authentication page.
*
* @return \Illuminate\Http\Response
*/
public function redirectToProvider()
{
return Socialite::driver('facebook')->redirect();
}
/**
 * Obtain the user information from GitHub.
 *
 * @return \Illuminate\Http\Response
 */
public function handleProviderCallback()
{
    $user = Socialite::driver('facebook')->user();

    // $user->token;
}

(web.php)
Route::get('login/facebook', 'Auth\LoginController@redirectToProvider');
Route::get('login/facebook/callback', 'Auth\LoginController@handleProviderCallback');

after change in (services.php)
(http://your-callback-url) form 
http://localhost:8000/login/facebook/callback/

if you want show login, email, password then add this topic

 public function handleProviderCallback()
          {
              $user = Socialite::driver('facebook')->user();
            //return $userSocial->name;
              $findUser = User::where('email',$userSocial->email)->first();
              if ($findUser) {
                       Auth::login($finduser);
                  return 'done with old';
              }else{
              }
                  $user = new User;
                  $user->name = $userSocial->name;
                  $user->email = $userSocial->email;
                  $user->password = bcrypt('123456');
                  $user->save();
                  Auth::login($user);
                  return 'done with new';
     }Code language: PHP (php)

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.