mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 12:06:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			343 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			343 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Models;
 | 
						|
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
 | 
						|
class Session extends Model
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * The table associated with the model.
 | 
						|
     */
 | 
						|
    protected $table = 'sessions';
 | 
						|
 | 
						|
    protected function casts(): array
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'id' => 'string',
 | 
						|
            'user_id' => 'integer',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |