UserVerification.php 625 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace App\Models;
  3. use App\Models\Relations\BelongsToUserTrait;
  4. use Illuminate\Auth\Passwords\DatabaseTokenRepository as Token;
  5. use Illuminate\Database\Eloquent\Model;
  6. use Illuminate\Support\Facades\Mail;
  7. class UserVerification extends Model
  8. {
  9. use BelongsToUserTrait;
  10. protected $table = 'user_verifications';
  11. /**
  12. * The attributes that are mass assignable.
  13. *
  14. * @var array
  15. */
  16. protected $fillable = ['user_id','category_id', 'name','status'];
  17. /**
  18. * The attributes excluded from the model's JSON form.
  19. *
  20. * @var array
  21. */
  22. protected $hidden = [];
  23. }