ServerLog.php 378 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Illuminate\Support\Facades\DB;
  5. class ServerLog extends Model
  6. {
  7. protected $table = 'v2_server_log';
  8. protected $dateFormat = 'U';
  9. protected $casts = [
  10. 'created_at' => 'timestamp',
  11. 'updated_at' => 'timestamp'
  12. ];
  13. protected $fillable = [
  14. 'u',
  15. 'd'
  16. ];
  17. }