Last active
February 1, 2020 07:29
-
-
Save mohammad-fouladgar/c4833dca6859bf2b16349ba7b2989707 to your computer and use it in GitHub Desktop.
Model Preparation for Must Verify Mobile
This file contains 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; | |
use Fouladgar\MobileVerification\Contracts\MustVerifyMobile as IMustVerifyMobile; | |
use Fouladgar\MobileVerification\Concerns\MustVerifyMobile; | |
use Illuminate\Foundation\Auth\User as Authenticatable; | |
use Illuminate\Notifications\Notifiable; | |
class User extends Authenticatable implements IMustVerifyMobile | |
{ | |
use Notifiable, MustVerifyMobile; | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment