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

14 lines
401 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PassengerWallet extends Model {
protected $connection = 'primary';
protected $table = 'passengerWallet';
public $timestamps = true;
const CREATED_AT = 'created_at';
const UPDATED_AT = 'updated_at';
protected $fillable = ['passenger_id', 'balance'];
protected $casts = ['balance' => 'decimal:2'];
}