19 lines
344 B
PHP
19 lines
344 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models\Server;
|
||
|
|
|
||
|
|
use App\Models\Course\Course;
|
||
|
|
use App\Models\MerchantShop;
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
||
|
|
|
||
|
|
class MerchantService extends Model
|
||
|
|
{
|
||
|
|
use SoftDeletes;
|
||
|
|
|
||
|
|
public function getFlowAttribute($value)
|
||
|
|
{
|
||
|
|
return json_decode($value, true);
|
||
|
|
}
|
||
|
|
}
|