Нет описания

KxSignUpRecords.php 249B

1234567891011121314
  1. <?php
  2. namespace App\Models;
  3. use App\Support\Log;
  4. use Illuminate\Database\Eloquent\Model;
  5. class KxSignUpRecords extends Model
  6. {
  7. public $timestamps = false;
  8. protected $table = 'kx_sign_up_records';
  9. protected static $unguarded = true;
  10. }