Files
intaleq_v2/app/Models/DriverToken.php
2026-04-22 21:59:56 +03:00

13 lines
341 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class DriverToken extends Model
{
protected $connection = 'primary';
protected $table = 'driverToken';
public $timestamps = false;
protected $fillable = ['token', 'captain_id', 'fingerPrint', 'created_at'];
public const ENCRYPTED_FIELDS = ['token'];
}