sarga/packages/Webkul/Core/src/Models/ChannelTranslation.php

11 lines
264 B
PHP

<?php
namespace Webkul\Core\Models;
use Illuminate\Database\Eloquent\Model;
use Webkul\Core\Contracts\ChannelTranslation as ChannelTranslationContract;
class ChannelTranslation extends Model implements ChannelTranslationContract
{
protected $guarded = [];
}