StatisticsUser.php 273 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\SoftDeletes;
  4. use Illuminate\Foundation\Auth\User;
  5. class StatisticsUser extends User
  6. {
  7. use SoftDeletes;
  8. protected $table = 'statistics_users';
  9. protected static $unguarded = true;
  10. }