Created
July 29, 2021 03:18
-
-
Save abishekrsrikaanth/bbbed0b5d4f6086cff66875e3ff030d4 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 | |
namespace App\Models; | |
class User extends Authenticatable implements MustVerifyEmail | |
{ | |
public function plan(): BelongsTo | |
{ | |
return $this->hasOne(StripePlanUser::class); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment