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

14 lines
310 B
PHP
Raw Normal View History

2018-10-12 12:54:10 +00:00
<?php
namespace Webkul\Core\Models;
use Webkul\Core\Eloquent\TranslatableModel;
2019-02-18 07:30:40 +00:00
use Webkul\Core\Contracts\CountryState as CountryStateContract;
2018-10-12 12:54:10 +00:00
2019-02-18 07:30:40 +00:00
class CountryState extends TranslatableModel implements CountryStateContract
2018-10-12 12:54:10 +00:00
{
public $translatedAttributes = ['name'];
2018-10-12 12:54:10 +00:00
public $timestamps = false;
}