mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 09:21:46 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			303 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			303 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Models;
 | |
| 
 | |
| use App\Events\ServerCreatedEvent;
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| 
 | |
| class ServerLog extends Model
 | |
| {
 | |
|     protected $table = 'v2_server_log';
 | |
|     protected $dateFormat = 'U';
 | |
|     protected $dispatchesEvents = [
 | |
|         'created' => ServerCreatedEvent::class
 | |
|     ];
 | |
| }
 |