/
home
/
corsairdevelopme
/
public_html
/
amplivo-console
/
app
/
Models
/
Upload File
HOME
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class WalletList extends Model { use HasFactory; protected $table="wallet_list"; const OCA_WALLET = 1; const BONUS_WALLET = 18; const LEGACY_BONUS_WALLET = 2; protected $dates = [ 'created_at', 'updated_at', ]; protected $fillable = [ 'name', 'type', 'balance', 'status', ]; public function wallet() { return $this->hasOne(Wallet::class,'wallet_list_id','id'); } }