<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class DrawSet extends BaseModel
{
//
//提款类型
public function getDrawTypeNameAttribute(){
$draw_type=config('adconfig.draw_type');
return $draw_type[$this->draw_type];
}