ServerLog.php 318 B

12345678910111213141516
  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. }