love_php/app/Models/Server/MerchantService.php

19 lines
344 B
PHP
Raw Normal View History

2026-04-02 09:20:51 +08:00
<?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);
}
}