Initial V2 commit

This commit is contained in:
Hamza-Ayed
2026-04-22 21:59:56 +03:00
commit 4706404488
53 changed files with 4392 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?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'];
}