1
0
Files
lkafu/app/Models/Advert.php
2020-08-06 14:45:56 +08:00

18 lines
325 B
PHP

<?php
namespace App\Models;
class Advert extends Model
{
public $channel_type = [
'member' => '会员商城',
'pick' => '提货商城',
'article' => '资讯',
];
public function getChannelTextAttribute()
{
return $this->channel_type[$this->channel] ?? '未知';
}
}