23 lines
390 B
PHP
Executable File
23 lines
390 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Model\Report;
|
|
|
|
use App\Model\BaseModel;
|
|
use App\Model\Customer\Customer;
|
|
use App\Model\Lottery;
|
|
|
|
class ReportDayShop extends BaseModel
|
|
{
|
|
protected $appends = [
|
|
'cdate_str'
|
|
];
|
|
|
|
public function getCdateStrAttribute()
|
|
{
|
|
if (!$this->cdate) {
|
|
return '';
|
|
}
|
|
return date('m月d日', strtotime($this->cdate));
|
|
}
|
|
}
|