UserRegister.php 506 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class UserRegister extends Model
  5. {
  6. protected $table = 'tb_user_register';
  7. protected $primaryKey = 'register_id';
  8. public $keyType = 'int';
  9. public $incrementing = true;
  10. public $timestamps = true;
  11. const CREATED_AT = 'created_at';
  12. const UPDATED_AT = null;
  13. const DELETED_AT = null;
  14. /**
  15. * The attributes that aren't mass assignable.
  16. *
  17. * @var array
  18. */
  19. protected $guarded = [];
  20. }