18 lines
325 B
PHP
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] ?? '未知';
|
|
}
|
|
|
|
}
|